*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
.hero{
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(45deg,#89c7ee,#e7dfb0);
}
nav{
    display: flex;
    padding: 20px 50px;
    align-items: center;
    justify-content: space-between;
}
.logo{
    text-decoration: none;
    color: #0c122e;
    font-weight: bold;
    font-size: 35px;
    text-shadow: 5px 5px 10px rgb(50 , 49, 49);

}
.logo img{
    width: 89px;
    height: 70px;
}
nav ul li{
    display: inline-block;
    margin-right: 50px;

}
nav ul li a{
    text-decoration: none;
    color: #0b3f7d;
    font-size: 16px;
    font-weight: bold;
}
button{
    padding: 7px 10px;
    font-size: 15px;
    background-color: #0b3f7d;
    margin-right: 10px;
    color: #fff;
    border: none;
    border-radius: 20px;
    border-top-right-radius: 0px;
    cursor: pointer;
}
.body_content{
    margin-top: 150px;
    margin-left: 50px;
    max-width: 650px;
    position: relative;
}
.body_content h1{
    font-size: 50px;
    color: #0c122e;
}
.body_content p{
    margin: 10px 0 20px 0  ;
}
.juice{
    width: 480px;
    position: absolute;
    bottom: 0;
    right: 100px;
    z-index: 100;
}
.juice_cup{
    width: 480px;
    position: absolute;
    bottom: 0;
    right: 300px;
    z-index: 99;

}
.ice{
    width: 700px;
    position: absolute;
    bottom: 50px;
    right: 130px;
}
.anim_right{
    transform: translateX(-50px);
    opacity: 0;
    animation: moveright 3s linear forwards;
}
.anim_left{
    transform: translateX(50px);
    opacity: 0;
    animation: moveleft 3s linear forwards;

}
@keyframes moveright{
    100%{
        transform: translateX(0);
        opacity: 100%;

    }
}
@keyframes moveleft{
    100%{
        transform: translateX(0);
        opacity: 100%;
    }
}