*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
body{
     background: rgb(60,198,34);
background: linear-gradient(90deg, rgba(60,198,34,1) 12%, rgba(102,104,227,1) 54%, rgba(238,89,199,1) 77%);
}
.wrapper{
    margin: 0 auto;
    width: 1000px;
     margin-top: 100px; 
}
ul{
    background: rgba(0,0,0,0.2);
    display: flex;
    list-style: none;
    justify-content: space-between;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}
section{
    padding: 10px;
    margin-top: 20px;
    text-align: center;
    background: rgba(0,0,0,0.2);
    font-size: 24px;
    color: white;
}
footer{
    padding: 10px;
    margin-top: 20px;
    text-align: center;
    background: rgba(0,0,0,0.2);
    font-size: 24px;
    color: white;
    
}
.signup{
margin-bottom: 20px;
    padding: 20px;
}
li:hover{
background: rgba(0,0,0,0.5);
}
li{
    text-decoration: none;
    font-size: 36px;
    
    text-align: center;
   padding: 10px;
}
a{
    text-decoration: none;
     color: white;
    font-family: sans-serif;
}
header{
    background: rgba(0,0,0,0.2);
}


@media all and (max-width: 1000px) {
    .wrapper{
        width: 600px;
    }
    ul{
        flex-wrap: wrap;
    }
    li{
        width: 280px;
    }
    .social{
        width: 50px;
        margin: 0px 30px;;
    }
}



@media all and (max-width: 500px) {
    .wrapper{
        width: 400px;
    }
    ul{
        flex-wrap: wrap;
    }
    li{
        width: 400px;
    }
    .social{
        width: 50px;
        margin: 0px 10px;;
    }
}