@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-image: linear-gradient(to bottom right, #ed9298 0%, #fa747d 40%, #58b9c3 100%);
    background-size: 200% 200%;
    animation: float 6s linear infinite alternate;
}
@keyframes float{
    from{background-position: 0 0 ;}
    to{background-position: 100% 100%;}
}
section{
    padding: 45px;
    background-color: #f9f8f4;
    width: 400px;
    border-radius: 15px;
    display: flex;
    align-content: center; 
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    box-shadow: 2px 15px 20px rgba(61, 61, 61, 4);
}

header img{
    width: 150px;
}


main{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 25px;
}

main a{
    background: #58b9c3;
    padding: 15px 0;
    text-decoration: none;
    color: #fff;
    border-radius: 30px;
    box-shadow: 5px 5px #1e5a60;
    transition: all .5s ease-in-out;
}

main p{
    color:#58b9c3;
    font-size: 12px;
}

main a:hover{
    opacity: .80;
}

@media (max-width: 520px){
    section{
        width: 90%;
        padding: 30px;
    }
}