@charset "UTF-8";
/* Main Styles for Oceanside Programs Website */

body {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

h1 {
    color: #0088AF;
    text-align: center;
    width: 80vw;
    font-family: 'proxima-nova', sans-serif;
    font-size: 5vw;
    font-weight: 400;
    line-height: 1;
}

p {
    font-family: 'proxima-nova', sans-serif;
    font-weight: 400;
    font-size: 4vw;
}

.hero {
    position: absolute;
    top: 20vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    flex-direction: column;
}

.video {
    height: 100vh;
    overflow: hidden;
}

.contact-banner {
    position: absolute;
    bottom: 3vh;
    color: white;
    text-align: center;
    width: 100vw;
}

.logo {
    width: 80vw;
}

@media screen and (min-width: 1200px) {
    .video {
        width: 100vw;
        height: auto;
    }

    h1 {
        width: 28vw;
        font-size: 16pt;
    }

    p {
        font-size: 13pt;
    }

    .contact-banner {
        bottom: 2vh;
    }

    .logo {
        width: 500px;
    }
}

@media screen and (min-width: 700px) and (max-width: 1200px) {
    h1 {
        font-size: 16pt;
        width: 35vw;
    }

    p {
        font-size: 13pt;
    }

    .contact-banner {
        bottom: 2vh;
    }

    .logo {
        width: 500px;
    }
}