* {
    box-sizing: border-box;
  }
  
  html,
  body {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    color: #222222;
    background-color: #f2f2f2;
    overflow: hidden;
    height: 100vh;
  }

  p {
    display: inline-block;
    text-align: center;
    padding: 10px;
    font-size: 1.5em;
  }

  p.header {
    font-weight: bolder;
  }

a {
    text-decoration: none;
    color: #000000;
    transition: all 0.2s linear;
}

a:hover {
    text-decoration: none;
    color: #f2f2f2;
    cursor: pointer;
}

a:focus, a:active {
    color: #000000;
    transition: all 0.2s linear;
}



  .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    text-align: center;
  }

  .video {
    text-align: center;
  }

  iframe {
    width: 100vw;
    height: 50vh;
    border-style: none;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    text-align: center;
    padding-bottom: 15px;
}


.bottom {
    text-align: center;
    justify-content: center;
}

.bottom p {
    font-size: 1.2em;
}

a.mail {
    font-size: .6em;
    color: #4538ff
}

a.mail:hover {
    color: #f2f2f2;
}




  /* =================================
  Media Queries 768px
==================================== */

@media (min-width: 768px) {
    html,
    body {
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    margin: 0 auto;
    overflow: hidden;
    }

    iframe {
        width: 85vw;
        height: 60vh;
    }




  }
  
  /* =================================
    Media Queries 1024px
  ==================================== */
  
  @media (min-width: 1024px) {
    html,
    body {
      width: 100%;
      margin: 0 auto;
      overflow: auto;
      height: 100%;
    }

    iframe {
        width: 75vw;
        height: 75vh;
    }

    .video {
        padding-bottom: 10px;
        padding-top: 5px;
      }

    p {
        margin: 0 auto;
    }
    .bottom p {
        font-size: 1.2em;
    } 
        }

