*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 20px;
}

body{
    margin: 40px;
}

.container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo p{
   text-align: center;
   text-shadow:#333 ;
   font-style: italic;
   font-size: 30px;
   color: #55AD9B;
   font-weight: bolder;
   transition: transform 0.3s ease-in-out
}

.logo p:hover{
    transform: scale(1.2);
}

.sidebar{
    width: 27%;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 15px;
    height: 92vh;
    box-shadow: 0px 0px 4px rgb(87, 86, 86);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.searchbar{
    width: 100%;
    background-color: #eee;
    border-radius: 4px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease-in-out
}

.searchbar:hover{
    transform: scale(1.2);
}
 
input{
    border: none;
    outline: none;
    background: none;
}

.glass:hover{
    color:rgb(202, 16, 16);
    cursor: pointer;
}

.social{
    display: flex;
    align-items: center;
    justify-content: center;   
    
}

.fa-brands:hover{
    transform: scale(1.2);
    color: rgb(232, 36, 75);
}

.fa-brands{
    color: black;
    padding: 10px;
    transition: transform 0.3s ease-in-out
}

.data{
    width: 75%;
    border-radius: 5px;
    height: 92vh;
    overflow-y: auto;
}
.top{
    height: 65px;
    border-radius: 8px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
}
.top:hover{
    color: #55AD9B;
}

.header{
    height: 200px;
    border-radius: 8px;
    background-color: #333;
    margin: 3vh 3vh;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

.header p{
    font-size: 45px;
    font-weight: bolder;
    color: white;
    transition: transform 0.3s ease-in-out;
}

.header p:hover{
    transform: scale(1.2);
}

#root{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.box{
    margin: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 2px solid #333;
    border-radius: 5px;
    padding: 15px;
}
.img-box {
    width: 100%;
    height: 176px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.images {
    max-height: 90%;
    max-width: 90%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease-in-out
}

.images:hover{
    transform: scale(1.2);
}
.bottom {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 110px;
}
h2 {
    font-size: 20px;
    color:red;
}
button {
    width: 100%;
    position: relative;
    border: none;
    border-radius: 5px;
    background-color: #333;
    padding: 7px 25px;
    cursor: pointer;
    color: white;
    transition: transform 0.3s ease-in-out
}
button:hover {
    background-color: red;
    transform: scale(1.2);
}
::-webkit-scrollbar {
    display: none;
}