ul{
    list-style-type: none;
    font-family: 'Poppins', sans-serif;
}

ul li a{
    text-decoration: none;
    color:gray;
}

ul li a:hover{
    color: beige;
    background-color: #574242;
}

#container{
    width: 100%;
    max-width: 1200px;
    min-width: 800px;
    margin: 0 auto;
}

#banner{
    width: 1100px;
    height: 250px;
    position: relative;
    background-color: #CDDE9E;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    margin: 0 auto;
    font-size: 3em;
    text-align: center;
}

#banner h1{
    color: #574242;
}

.Stars{
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.Stars img {
    transition: transform 0.4s ease;
}

.Stars:hover img {
    transform: rotate(14deg); 
}

h1{
    font-family: 'Poppins', sans-serif;
}

p{
    font-family: 'Poppins', sans-serif;
}


h2{
    font-family: 'Lexand Exa', sans-serif;
}

.title{
    width: 1100px;
    margin: 0 auto;
    text-align: center;
    color: #574242;
    text-align: start;
}

@keyframes sway{
    0% { 
        transform: rotate(0deg);
    }
    25% { 
        transform: rotate(2deg);
    }
    50% { 
        transform: rotate(0deg);
    }
    75% { 
        transform: rotate(-2deg);
    }
    100% { 
        transform: rotate(0deg);
    }
}

.Long, .Med, .Short{
    transform-origin: top center;
    animation: sway 4s ease-in-out infinite;
    padding-left: 20px;
}

.Long img{
    width: 40px;
}

.Med img{
    width: 40px;
}

.Short img{
    width:40px;
}


main {
    width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    padding-top: 40px;
}

main section {
    background-color: #f0f0f0;  
    padding: 20px;              
    border-radius: 30px;   
    box-sizing: border-box;
    flex: 1;
    margin: 0 10px;
    border: 1px dashed transparent;
}

main li{
    line-height: 1.6;
}

main section h2{
    color:#A387B2;
    text-align: center;
}


main section:hover{
    border-color: #A387B2;
}

footer{
    text-align: center;
    width: 100%;
    padding-top: 2px;
}

footer a{
    color: #A387B2;
}

footer p{
    color: #574242;
}

body{
    background-color: beige;
    width:1200px;
    height: 750px;
    margin: auto;
}







