

@font-face {
    font-family: "lato-light";
    src: url(fonts/Lato-Light.ttf);
}
@font-face {
    font-family: "lato-black";
    src: url(fonts/Lato-Black.ttf);
}

*, *::before, *::after {



    body {
    background-color: #222222;
    align-items: center;
    color: white;
    font-size: 16px;
}

.dark-mode {

    background-color: #222222;
    color: white;

}

#text {
    font-family: "lato-light", sans-serif;
    font-weight: 300;
}

.content {

    margin-right: 5rem;
    margin-left: 5rem;
    
    }

    .media {
        border-left: solid white 2px ;
        border-right: solid white 2px;
       
        pad: 0 auto;
        margin-top: 1rem;
        box-shadow: 0 0 14px 0px white;
    clip-path: inset(0px -15px 0px -15px);

    }

video {
    width: 100%;
    max-height: 25rem;
    display: block;
    text-align: center;
    align-content: center;  
 
}

img { 
   max-width: 100%; 
    display: block;
    margin: auto; 
    justify-content: center;
    max-height: 25rem;
  
} 




.btn {
    background: none;
    border: none;
    display: block;
    height: 3.5rem;
    font-family: "lato-black", sans-serif;
    font-weight: 900; 
    font-size: 16px;
    cursor: pointer;
    color: white;
    text-align: left;
}



.btn:hover {
    opacity: 0.7;
}

.container {
   text-align: left;
   margin-top: 3rem;
   max-width: 80%;
}


#darkmodebtn {
    background-color: #222222;
    color: white;
    border: 2px solid white;
    border-radius: 5px;
    padding: 10px 15px;
    position: absolute;
    bottom: 30px;    
}

.popup {

 /*   position: absolute; */
    text-align: center;
    width: auto;
    height: 100%;
    padding: 50px;
    font-family: "lato-light", sans-serif;

}

.popup2 {
   /* position: absolute; */
    text-align: center;
    width: auto;
    height: 100%;
    padding: 50px;
    font-family: "lato-light", sans-serif;
}

@media only screen and (min-width: 700px) {
    .popup {
      display: none;} 

    }

 @media only screen and (min-height: 700px) {
        .popup2 {
          display: none;} 
    
        }

@media only screen and (max-width: 700px) {
    
        .media {display: none;}
        #text {display: none;}
        .btn {display: none}
        #darkmodebtn {display: none}
}

@media only screen and (max-height: 700px) {
    
    .media {display: none;}
    #text {display: none;}
    .btn {display: none}
    #darkmodebtn {display: none} 
}



}