@font-face {
    font-family: 'ProximaNova';
    src: url('../fonts/ProximaNova-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, a, img, ol, ul, li {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* Page styles */
body {
    min-height: 100vh;
    font-family: 'ProximaNova', sans-serif;
}

header.desktop-header {
    display: block;
}

.banner {
    width: 100%;
}

#ctaHeader {
    color: white;
    padding: 10px;
    background: #5D3C85;
    background-image: linear-gradient(to right top, rgb(146 100 201) 0%, rgba(64,43,102,1) 100%);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

#ctaHeaderText {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}

#ctaHeaderSubtext {
    font-size: 20px;
    font-weight: 500;
}

#app-wrapper {
    box-sizing: border-box;
}

.row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    margin: 10px;
}

.row img,
.solo-image-wrapper img {
    display: block;
    width: 100%;
}

.imgWrapper, .videoOuterWrapper {
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
    align-self: center;
}

.videoWrapper #video {
    width: 100%;
}

footer {
    width: 100%;
    color: #929296;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    padding: 10px 25px;
}

.footerText {
    font-size: 12px;
    margin: 5px 0;
}

.footerBtn {
    margin-bottom: 15px;
}

.footerText.highlight {
    color: #7F41A5;
    border: 2px solid #000000;
    border-radius: 4px;
    padding: 4px;
    font-weight: bold;
    align-self: flex-start;
}

img.footerLogo {
    height: 40px;
    margin-top: 10px;
}

.footerText a:link, .footerText a:visited {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    background: #7F41A5;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 1.2em;
}

.footerText a:hover {
    color: #ffffff;
    text-decoration: underline;
    background: #582d73;
}

@media screen and (max-width: 600px) {
    #app-wrapper {
        width: 100%;
    }

    #ctaHeaderText {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    #ctaHeaderSubtext {
        font-size: 16px;
        font-weight: 500;
    }

    .row {
        grid-template-columns: repeat(1, 1fr);
    }
}
