@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@500&display=swap');
*{
    font-family: 'Archivo', sans-serif;
    font-size: 1em;
    scroll-margin-top: 13vh;
}
body{
    margin: 0;
}
a{
    text-decoration: none;
    color: #000;
}
a:hover{
    color: #1725A9;
}
section{
    padding-top: 100px;
}
.wpp__container{
    position: fixed;
    bottom: 12vh;
    right: 12vh;
    z-index: 99999;
}
.wpp{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 55px;
    background-color: #11BA17;
    border-radius: 50%;
    
}
.wpp img{
    height: 65%;
}
.wpp:hover{
    cursor: pointer;
    background-color: #13d11a;
    scale: 1.03;
}
@media(max-width: 800px){
    .wpp__container{
        right: 3vh;
    }
}