  body {
    margin: 0;
  }

  .header {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    display: flex;
    justify-content: center;
    padding-top: 3%;
  }


  #title {
    display: flex;
    flex-direction: column;
    text-align: left;
    color: white;
  }

  .titletext {
    background-image: url("../mainimage.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
    font-size: 20px;
    padding-top: 50px;
  }

  h1 {
    background-color: white;
    color: black;
    text-transform: uppercase;
    font-family: 'Poller One';
    font-size: 14px;
    padding: 10px;
    width: fit-content;
  }

  .titletext p {
    background-color: #252525;
    padding: 10px;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    width: fit-content;
  }

  button {
    text-transform: uppercase;
    background-color: #0ba39c;
    color: white;
    border: none;
    height: 35px;
  }

  #trinity {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-family: 'Poller One';
  }

  #trinity img {
    width: 400px;
  }

  #trinity p {
    font-size: 20px;
  }

  .pictures {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
  }

  footer {
    border: 1px solid black;
    background-color: black;
    background-size: 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 30px;
  }

  .socials {
    display: flex;
    flex-direction: row;
  }

  h2 {
    font-size: 15px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
  }

  ion-icon {
    font-size: 25px;
    border: 2px solid white;
    color: white;
    padding: 8px;
    display: flex;
    margin-left: 20px;
    justify-content: center;
    align-items: center;
  }

  a:link {
    text-decoration: none;
  }

  a:visited {
    color:darkslategrey;
  }

@media (min-width: 599px) {

  body {
    margin: 0;
    height: 100%;
  }
  
  #header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .logo {
    padding-top: 3%;
  }
  

  ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 10px 40px;
    margin-right: 200px;
    padding-bottom: 50px;
  }

  li {
    list-style: none;
  }

  a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-family: "Arial Black", Gadget, sans-serif;
    text-transform: uppercase;
  }

  #header ul li a:hover, #header ul li.selected a {
    color: #0ba39c;
  }

  #title {
    width: 100%;
    text-align: center;
  }
  
  
  .titletext {
    width: 100%;
    height: 550px;
    object-fit: cover;
    height: 700px;
    position: relative;
  }

  .text {
    position: absolute;
    top: 30%;
    left: 60%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    text-align: center;
  }

 .titletext p {
  font-size: 20px;
 }

  h1 {
    width: fit-content;
    font-size: 24px;
  }

  button {
    height: 65px;
    width: 145px;
    font-size: 16px;
    text-transform: uppercase;
  }

  .titletext p {
    width: fit-content;
    padding-right: 10px;
  }
  
  #trinity {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    flex-direction: row;
  }
  
  img {
    display: block;
  }

  footer {
    display: flex;
    padding: 20px;
    justify-content: space-around;
    flex-direction: row;
  }


  }