#background-video {
    height: 100vh;
    width: 100vw;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
/* Style the video: 100% width and height to cover the entire window */
#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
  }
  
  /* Add some content at the bottom of the video/page */
  .content {
    position: fixed;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    width: 100%;
    padding: 20px;
  }
  
  /* Style the button used to pause/play the video */
  #myBtn {
    width: 200px;
    font-size: 18px;
    padding: 10px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
  }
  
  #myBtn:hover {
    background: #ddd;
    color: black;
  }
body {
    margin: 0;
    padding: 0;
}

html {
    background: black;
    background-size: cover;
}

* {
    font-family: 'audiowideregular';
}

center {
    margin: 0 auto;
}

.center {
    text-align: center;
}



@font-face {
    font-family: 'audiowideregular';
    src: url('font_latin-webfont.woff2') format('woff2'),
        url('font_latin-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

.header {
    filter: drop-shadow(5px 5px 5px #222);
    width: 600px;
}

ul {
    list-style-type: none;
    display: table;
    margin: 0;
    padding: 0;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
}

ul.list {
    list-style-type: disc;
}

.project {
    font-size: 16px;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    margin: 12px;
    padding: 12px;
    padding-bottom: 29px;
    padding-top: 8px;
    border-bottom: 7px #f4ba6e solid;
    border-top: 7px #444444 solid;
    box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.4);
}

ul.boxes {
    display: table;
}

div.box {
    width: 100%;
    font-size: 16px;
    color: white;
    background-color: #2a2a2a;
    margin: 7px;
    padding: 5px;
    margin-left: -6px;
    display: table;
    border-bottom: 7px #444444 solid;
    box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.4);
}

div.box img {
    margin: 10px;
}

img {
    border-radius: 8px;
}

h1 {
    text-align: left;
    color: lightcoral;
    font-size: 24px;
}

h2 {
    font-size: 16px;
}

a.button {
    text-decoration: none;
    text-align: center;
    border: none;
    font-size: 16px;
    padding: 14px;
    margin: 10px;
    margin-left: 0px;
    cursor: pointer;
    color: white;
    background-color: #222222;
    transition-duration: 0.3s;
    border-bottom: 4px #444444 solid;
}

a.icon span {
    padding-left: 36px;
    padding-bottom: 30px;
    padding-top: 2px;
    background-size: 28px !important;
    background-repeat: no-repeat !important;
}

a.button:hover {
    background-color: gray;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.4);
}

/*MODAL BEGIN*/

.top {
    position: relative;
    top: 100px;
    left: 0;
    width: 0%;
    height: 0%;
}

.zoomer {
    cursor: pointer;
    max-height: 300px;
    width: auto;
    height: auto;
    transition: 0.2s;
}

.zoomer:hover {
    opacity: 0.8;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 90%;
    width: auto;
    height: auto;
    border-radius: 16px;
}

.modal-content {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close {
    position: absolute;
    top: 25px;
    right: 45px;
    color: #f1f1f1;
    font-size: 70px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: coral;
    text-decoration: none;
    cursor: pointer;
}