html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    top: 0;
    left: 0;
    min-width: 350px;
}

body {
    font-family: "Manjari", "Arial", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
}

#header {
    box-sizing: border-box;
    max-width: 600px;
    width: 100%;
    height: 62px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: fixed;
    top: 0;
    background-color: rgba(255,255,255,0.9);
    z-index: 1;
}

#nav-bar ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: end;
}

.nav-link a {
    text-decoration: none;
    color: black;
    margin-left: 10px;
    font-size: 18px;
    font-weight: 100;
}

.nav-link a:hover {
    color: #FF7021;
}

#header-img {
    width: auto;
    height: 30px;
    display: inline-block;
    position: relative;
    top: -4px;
}

.info {
    padding-top: 62px;
}

.info, form {
    width: 90%;
    margin: auto;
}

#about h2.segment-title {
    margin: 1rem auto 0.5rem;
}

h2.segment-title {
    font-size: 23px;
    font-weight: 700;
    margin: 1.6rem auto 0.5rem;
    text-align: left;
}

.info p {
    margin: 0 auto 1.5rem;
    font-size: 18px;
}

#short-film p {
    margin-bottom: 0.8rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
    
.video-container iframe, .video-container object, .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

iframe {
    border: none;
}

.form-container {
    position: relative;
    top: 50px;
    background-color: rgb(94, 94, 94);
}

#form {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    font-size: 15px;
    line-height: 100%;
}

#form p {
    margin: 0;
    color: rgb(255, 255, 255);
}

#email, #submit {
    margin-top: 1rem;
    margin-bottom: 0;
    align-self: center;
}

#email {
    width: 100%;
    height: auto;
    max-width: 250px;
    padding: 9px 8px 6px;
    font-family: "Manjari", "Arial", sans-serif;
    font-size: 14px;
    border: none;
    border-radius: 5px;
}

#submit {
    display: inline-block;
    background-color: #FF7021;
    border: none;
    color: white;
    padding: 13px 32px 10px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    font-family: "Manjari", "Arial", sans-serif;
}

#submit:hover,
#submit:focus {
    background-color: rgb(219, 85, 13);
    outline: 0;
}

#submit:active {
    border: none;
    background-color: rgb(194, 70, 3);
}

@media (min-width: 600px) {
    #header {
        max-width: 100%;
        padding: 0 5vw;
    }
}

@media (min-width: 750px) {
    .info, form {
        width: 65%;
        margin: auto;
    }

    h2.segment-title {
        font-size: 26px;
        font-weight: 700;
        margin: 1.8rem auto 0.7rem;
        text-align: left;
    }
    
    .info p {
        margin: 0 auto;
        font-size: 21px;
    }
}