html {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(36deg, rgba(0,0,0,1) 50%, rgba(214,23,0,1) 99%) no-repeat center center fixed;
    color: white;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 10%;
    height: 10%;
    border-radius: 50%;
    background-color: white;
}

h1 {

  font-size: 3rem;

}

ul {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    list-style-type : none;
}

li {

    width: 40%;
    background-color: white;
    margin-top: 10px;
    padding: 0px 10px 0px 10px;
    border-radius: 25px;
}

a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    outline: none;
    text-decoration: none;
    color: black;
}

i {
    font-size: 2rem;
}

@media screen and (min-width: 540px) and (max-width: 1000px) {


    body {
        margin-top: 35%;
    }

    li {
        height: 10rem;
        width: 600px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin-top: 50px;
    }

    a {
        font-size: 25px;
    }
  }