*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif, ;
    box-sizing: border-box;
    
}
body{
    overflow: hidden;
    background-color: #A9BCC3;
}
.container{
   position: relative;
   padding: 0px 50px 0px 50px;
}
@keyframes img {
    0%{transform: translate(0%);}
    100%{
        transform: translate(-100%,0%) ;     
    }
}
img{
    position: absolute;
    z-index: 1;
    top: 80px;
    left: -7%;
    width: 750px;
    scale: 1.2;
    animation: img 2s ease forwards normal;
}
button{
    text-transform: uppercase;
    color: white;
    background-color: #1B3943;
    font-weight: normal;
    font-size: 40px;
    border: 4px white solid;
    border-radius: 80px;
    margin-right: 5px;
    width: 410px;
    height: 70px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 80px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.6);
    animation: nut 2s ease forwards normal;
}
button:active{ 
    transform: translate(10px,10px);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0);   
}
@keyframes nut {
    0%{transform: translateX(0%);}
    100%{transform: translateX(150%);}
}
.nut1{
    z-index: 2;
    text-decoration: none;
    padding-right: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
}

