
     main {
      background-color: #34495e;
      margin: 0 auto;
      padding: 1.5rem;
      border-radius: 8px;
      max-width: 90vw;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    
       .titleOfSite {
    max-width: 90vw;
    margin: 0 auto 5vh auto;
    background-color: #34495e;
    color: #1abc9c;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    text-align: center;
    font-weight: 600;
    font-size: 30px;
    padding: 20px 0 20px 0;
}
    
    @media (min-width: 1000px) {
    main {
        max-width: 900px;
    }
    .titleOfSite {
        max-width: 900px;
    }
}

 


    h1, h2 {
      color: #1abc9c;
    }
  
    a {
      color: #1abc9c;
      text-decoration: underline;
    }
    
    p {
        margin-bottom: 20px;
    }
   
