body {
    background-color: #31378D;
    font-family: 'Roboto', sans-serif;
    color: white;
}

.logo {
    text-align: center;
  
}

.logo img {
    max-width: 200px;
    max-height: 200px;
    margin-top: 25px;
}


.items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
    grid-gap: 50px
}
   
.item p {
    background-color: #693B95;
    padding-top: 2%;
    padding-bottom: 2%;
    margin-top: -5px;
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    text-align: center;
}

.item {
    
    justify-self: center;
    margin-top: 10px;
}


.items img {
    max-width: 800px;
    max-height: 450px;
    
}

.item:hover {
    opacity: 0.8;
    color: #00A0C6;
}
.items a {
    text-decoration: none;
    color: inherit;
}

.nav {
    background-color: #693B95;
    color: black;
    list-style:none;
    margin:0;
    padding:0;
    padding-bottom: 2px;
    text-align:center;
  }
  
  .nav li {
    background-color: #693B95;
      display: inline;
      padding: 1rem;
      position: relative;
      text-decoration: none;
    transition-duration: 0.5s;
    color: white;
  }
    
  li a {
    display:inline-block;
      padding-top:20px;
      padding-bottom:15px;
      color: inherit;
      text-decoration: none;
  }
  
  li:hover {
      color: #00A0C6;
      cursor: pointer;
  }
  
  ul li ul {
      visibility: hidden;
    opacity: 0;
      position: absolute;
    transition: all 0.5s ease;
      left: 0;
      margin-left: -75%;
  }
  
  ul li:hover > ul,
  ul li ul:hover {
    visibility: visible;
    opacity: 1;
  }

.active a {
    color:#00A0C6; 
}


.container a{
    color: #00A0C6;
    
}

.container p {
    padding-left: 25%;
    padding-right: 25%;
    text-align: justify;
}

.images{ 
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
  
}

.images img {
    max-width: 500px;
    max-height: 350px;
    margin-top: 3%;
}
