@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}
body{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-image: linear-gradient(to bottom right, #276eb6 20%, #26b570 40%, #f04d4f 60%, #fed241 80%);
    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: #fff;
    width: 500px;
    border-radius: 15px;
    display: flex;
    align-items: 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: 80px;
}
header h3{
    color: #070909;
    font-size: 1.35rem;
    font-family: 'Lato Black', sans-serif;
}
header h4{
    color: #2667af;
    font-size: 1.1rem;
    font-family: 'Lato regular', sans-serif;
}
header h5{
    color: #3e3e3f;
    font-size: 1.35rem;
}
.button {
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    box-shadow: none;
    border-radius: 10px;
    padding: 6px;
    opacity: 0.8;
    font-size: 1.35rem;
}
.button:hover {
    opacity: 1;
}
main{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 25px;
}
main a{
    background: #2667af;
    padding: 15px;
    text-decoration: none;
    color: #fff;
    border-radius: 3px;
    box-shadow: 5px 5px #c0cfdd;
    transition: all .5s ease-in-out;
}
.ma2{
    background: #347ab7;
    padding: 15px;
    text-decoration: none;
    color: #fff;
    border-radius: 3px;
    box-shadow: 5px 5px #c0cfdd;
    transition: all .5s ease-in-out;
}
.ma3{
    background: #3f85ba;
    padding: 15px;
    text-decoration: none;
    color: #fff;
    border-radius: 3px;
    box-shadow: 5px 5px #c0cfdd;
    transition: all .5s ease-in-out;
}
.ma4{
    background: #5294c6;
    padding: 15px;
    text-decoration: none;
    color: #fff;
    border-radius: 3px;
    box-shadow: 5px 5px #c0cfdd;
    transition: all .5s ease-in-out;
}
.ma5{
    background: #62a2c9;
    padding: 15px;
    text-decoration: none;
    color: #fff;
    border-radius: 3px;
    box-shadow: 5px 5px #c0cfdd;
    transition: all .5s ease-in-out;
}
main a:hover{
    opacity: .85;
}
.footer{
    position: absolute;
    bottom: 10px;
    color: #fff;
    font-size: 1rem;
}
@media (max-width: 360px){
    section{
        width: 90%;
        padding: 20px;
    }
    header img{
        width: 30px;
    }
    header h3{
        font-size: 1.3rem;
    }
    header h4 img{
        width: 30%;
    }
    main{
        gap: 10px;
    }
    main a{
        padding: 8px 0;
        box-shadow: 1px 1px #d1d2d3;
    }
}
@media (max-width: 480px){
    section{
        width: 90%;
        padding: 25px;
    }
    header img{
        width: 40px;
    }
    header h3{
        font-size: 1.3rem;
    }
    header h4 img{
        width: 40%;
    }
    main{
        gap: 13px;
    }
    main a{
        padding: 9px 0;
        box-shadow: 2px 2px #d1d2d3;
    }
}
@media (max-width: 520px){
    section{
        width: 90%;
        padding: 30px;
    }
    header img{
        width: 50px;
    }
    header h3{
        font-size: 1.3rem;
    }
    header h4 img{
        width: 50%;
    }
    main{
        gap: 15px;
    }
    main a{
        padding: 10px 0;
        box-shadow: 2px 2px #d1d2d3;
    }
}