 /* #source{
    height:300px;
    width:1000px;
    margin-top:0;
} */
*{
    margin:0px;
    padding:0px;
}
#logo{
    height:150px;
    width:150px;
    margin-left:0px;
    padding-left:0px;
    border-radius: 10%;
}
.class1{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    gap:5px;
     align-items: flex-start;
     background-color:violet;
}
h1{
    font-size:80px;
    margin-top:5px;
    margin-left: 5px;
    color: orange;
}

#id1{
    font-size:30px;
    border-radius:18px;
    width:300px;
    height:70px;
    margin:5px;
    padding:5px;
    background-color:orange;
}
#id2{
    height:70px;
    font-size: 30px;
    border-radius: 18px;
    width:300px;
    margin:3px;
    margin-top:3px;
    background-color: orange;
}

/* Heading nav */
   .first {
    display: flex;
    flex-direction: row;
    margin-left: 0px;
    padding-left: 0px;
    gap:8px;
    align-items: flex-start;
    margin-top: 10px;
   
     
}
.first h2{
    color:rgb(141, 16, 141);
}

.first a{
    text-decoration: none;
}

.first img{
      height:100px;
      width:100px;
}

h2{
    font-size:40px;
    color:black;

}
/* Menu items */
.class2{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top:70px;
    padding:4px;
    transition: all 2s linear ;
}
#id3{
    border-radius:50%;
    height:200px;
    width:200px;

}
.class2:hover{
    transform:translate(300px);
    animation: moveLeftRight 0.9s linear infinite;
}

/* Brands */
.Brand{
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top:70px;
    padding:4px;
    transition: all 2s linear ;
}
#xy{
    border-radius:50%;
    height:200px;
    width:200px;
    padding:10px;
}
.Brand:hover{
    transform:translate(300px);
    animation: moveLeftRight 0.9s linear infinite;
    
}
.rest{
    display: flex;
    flex-direction: row;
    gap:10px;
    flex-wrap: wrap;
    padding:4px;
    justify-content: space-around;
}

.box1{
    border:2px solid black;
    height:480px;
    padding-top:0px;
    margin:8px;
    border-radius:15px;
    position: relative;
} 
/* #box1 h2{
    color:white;
    text-align: center;
} */
.box1 img{
  /* position: relative; */
    padding-top: 0px;
    height:480px;
    width:450px;
    border-radius:15px;
    transition:all 0.8s linear 0s;
}
.image-name {
    position: absolute;
    top: 0;
    left: 50%; /* Adjust the horizontal position as needed */
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    font-size: 30px;
    display:flex;
    justify-content: center;
    align-items: center;
}
.image-name a{
    text-decoration: none;
    color: azure;
}
.box1 img:hover{
    transform: scale(1.1);
}
.box1 a{
    text-decoration: none;
}
.box1 a:hover{
    cursor:pointer;
    
}
