#header {
    background: #20303B;
    height: 94px;
    position: relative;
}
#main {
    position: relative;
    height: fit-content;
}
#hero {
    width: 100%;
}
#overlay {
    background-image: linear-gradient(to bottom, rgba(32,48,59,0.5), rgba(32,48,59,1));
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
}
#down-message {
    color: white;
    font-family: Lato, sans-serif;
    font-size: 80px;
    position: absolute;
    z-index: 4;
    width: 60%;
    left: 20%;
    top: 30%;
    text-align: center;
}
.blue-styled {
    background: #20303B;
}
#logo {
    height: 58px;
    position: absolute;
    left: 12%;
    top: 18px;
}
iframe {
    width: 60%;
    margin-left: 20%;
    overflow: visible;
}
p {
    color: white;
    font-family: Lato, sans-serif;
    font-size: 24px;
    margin-top: 1em;
    margin-bottom: 0;
}
@media screen and (max-width: 700px) {
    p {
        font-size: 4vw;
    }
}
@media screen and (max-width: 450px) {
    p {
        font-size: 18px;
        height: -webkit-fill-available;
    }
}

@media screen and (max-width: 1200px) {
    #down-message {
        font-size: 6vw;
    }
}
@media screen and (max-width: 720px) {
    iframe {
        width: 80%;
        margin-left: 10%;
    }
}
