@font-face {
    font-family: ethnocentric;
    src: url(src/ethnocentric/ethnocentric\ rg.otf);
  }
  

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: ethnocentric;
}
body{
    background-color: black;
    background-image: url(src/Logo\ come\ sfondo.png);
    background-size:cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo{
    width:100%;
    display: flex;
    justify-content: center;
    padding:50px 0;

}

.logo img{
    width: 300px;
    border-radius:50%;
}

.links{
    width:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 50px 0;
}

.links ul{
    list-style: none;
    display:block;
}
.links li{
    width:90vw;
    height:75px;
    position: relative;
}
.links li img{
    width:50px;
    position: absolute;
    left:5px;
    margin-left:10px;
}
.links a{
    display: flex;
    justify-content: center;
    color:black;
    font-size: 20px;
    background-color: #ffd400;
    align-items: center;
    text-align: center;
    border: 1px solid black;
    width:100%; 
    height:100%;
    border-radius: 40px;
    text-decoration: none;
    
}

.links li:not(.links li:first-of-type){
    margin-top:50px;
}
/*
.links a::before{
    content:"";
    background-color: white;
    position: absolute;
    width:0;
    height:40px;
    left: 0;
    border-radius: 20px;
    transition: 0.3s ease-in-out;
    z-index: 0;
}
*/

.links a:hover{
    color:black;
}

.links a:hover::before{
    width: 200px;
}

@media screen and (min-width:650px){

    .links li{
        width:500px;
    }

    .links a{
        font-size: 30px;
    }

}