@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
     font-family: 'Roboto', sans-serif;
     color: #FFFFFF;
     font-size: 16px;
     font-weight: 400;
     margin: 0;
     background:#000000;
     background-size: cover;
     min-height: 100vh;
}

a {
     text-decoration: none;
}

a:link, a:visited {
     color: #000;
     text-decoration: none;
}

a:hover, a:active {
     text-decoration: underline;
}

.logo-parent {
     width: 100%;
     margin: auto;
     background: black;
}

.logo {
     width: 80%;
     padding: 2rem 0;
     margin: 0 auto;
     display: block;
}

.outer {
     width: 80%;
     margin: 4rem auto 0 auto;
     display: block;
     max-width: 1000px;
}

.two-columns {
    display: block !important;  
}

.two-columns div {
    display: block !important;
    width: 100% !important;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.iframe-parent {
     display: flex;
     justify-content: center;
     position: relative;
     width: 100%;
     padding-top: 60%;
     overflow: hidden;
}

#giframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}
@media only screen and (-webkit-device-pixel-ratio: 3) {

     .outer {
          width: 80%;
          margin: 4rem auto 0 auto;
          display: block;
          max-width: 1000px;
     }

     .two-columns {
         display: block !important;  
     }

     .two-columns div {
         display: block !important;
         width: 100% !important;
         margin-bottom: 2rem;
         font-size: 1.5rem;
     }
}
@media only screen and (-webkit-device-pixel-ratio: 2) {

     .outer {
          width: 80%;
          margin: 4rem auto 0 auto;
          display: block;
          max-width: 1000px;
     }

     .two-columns {
         display: block !important;  
     }

     .two-columns div {
         display: block !important;
         width: 100% !important;
         margin-bottom: 2rem;
         font-size: 1.5rem;
     }
}
@media only screen and (max-width: 767px) {
     .outer {
          width: 80%;
          margin: 4rem auto 0 auto;
          display: block;
          max-width: 1000px;
     }

     .two-columns {
         display: block !important;  
     }

     .two-columns div {
         display: block !important;
         width: 100% !important;
         margin-bottom: 2rem;
         font-size: 1.5rem;
     }
}

@media only screen and (min-width: 768px) {
     .logo {
          width: 30%;
     }    
     .outer {
          width: 80%;
          margin: 4rem auto 0 auto;
          display: block;
          max-width: 2000px;
     }

    .two-columns {
          display:flex !important;
          /*column-gap:1rem;*/
    }

    .two-columns div{
          width:calc((100% - 4rem) / 2) !important;
          font-size: 1rem;
          padding: 1rem;
    }
}