@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');


*{
    padding: 0;
    margin: 0 ;
    box-sizing: border-box;
}

html{
    background-color: black;
    font-family: 'Poppins', sans-serif;
}

header{
    border-bottom: solid 2px rgba(128, 128, 128, 0.184);
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;

}

.logo{
    width: 70px;
    height: 70px;
  
}

.logo img{
    width: 100%;
    height: 100%;
}

h1{
    text-align: center;
   color: #F5BE1E;
   font-size: 3rem;
  

}

h2{
    color: #F5BE1E;
    font-size: 1.8rem;
    margin: 20px 0px 20px;
}

article{
    width:80%;
    color: white;
   
    margin:auto;
    margin-bottom: 100px; 
    margin-top: 100px; 
}

article a{
    color: #F5BE1E;

}

ul li{
    color: #F5BE1E;
    margin-left: 30px;
}


p{
    font-size: 1.3rem;
    line-height: 2;
    text-align: justify;
}

@media screen and (min-width: 320px) and (max-width: 426px) {
    h1 {
        font-size: 2rem;
    }
    h2{
        font-size: 1.2rem;
    }
    p{
        font-size: 1rem;
    }
}
