body{
    font-family: 'Poppins', sans-serif;
    background-repeat: no-repeat;
    background-size: 55%;
}
  
a {
    color: #a5b4fc;
    text-decoration: none;
}
  
em {
    color: #a5b4fc;
    font-style: normal;
}
  
h1 {
    font-size: 3.5em;
    color: #a5b4fc;
    font-family: 'Montserrat', sans-serif;
  }
  
h2 {
    color: #a5b4fc;
}
  
p,
li {
    font-size: 1.1em;
    color: #000000;
}
  

header{
    border-bottom: 1px #a5b4fc solid;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

nav{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

main{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;

}
footer{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}


.nav_link{  
    text-decoration: none;
    color: #a5b4fc;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 0.5rem;
    margin: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease-in-out;
}

.article{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 2px 2px 2px rgba(0.5, 0.5, 0.5, 0.5);
    transition: all 0.2s ease-in-out;
}