
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {


    background-color: rgb(37, 240, 255);
    font-family: "Roboto", sans-serif;
}


a {

    color: rgb(240, 3, 3);
    text-decoration: none;
}

section {
    display: flex;
    flex-direction: column;
  }
  @media (min-width: 1000px) {
    section {
        flex-direction: row;
        
    }
  }

  nav {
    display: flex;                      
    flex-direction: column;    
  }
  @media (min-width: 1000px)  {   
      nav{
          flex-direction: row;     
          justify-content: center;
      }
  }
  nav a{
    display: flex;
    gap: 10px; 
    justify-content: center;
    margin-top: 10px;
    
}


article{
    width: 550;
    background-color: darkorchid;
    border-radius: 50px;
    padding: 40px;
    
}
article {
    margin: 12px;
    margin-top: 20px;
  }
  
  nav a {
    background-color: blue; 
    color: white;                    
    text-decoration: none;    
    padding: 10px 20px;       
    border: 1px solid white;  
    border-radius: 4px;          
 }
  nav a:hover {
    transition: 2s;
    background-color: aliceblue;
  
} 
h1 {
  justify-content: center;
}