@font-face {
    font-family: Pangram;
    src: url(./Pangram-FullFamily/Pangram-Regular.otf);
}

:root {
    --northern_pine: #00414D;
    --radient_yellow: #FFC635;
}

html {
    height: 100%;
}

body {
    background: linear-gradient(0deg, var(--northern_pine), var(--northern_pine)), url(5_20200926-DSC_4190Bright-scaled.jpg);
    background-blend-mode: multiply, normal;
    background-repeat: repeat, no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
}

header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: auto;
    max-width: 95%;
    width: 100%;
    margin: 2% auto;
}

main {
    max-width: 95%;
    margin: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: auto;
    margin-bottom: 10%;

}

h2 {
    color: var(--radient_yellow);
    line-height:  58px;
}

p {
    color: #FFFFFF;
}

.button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 125px;
    height: 30px;
    background: var(--radient_yellow);
    border-radius: 174px;
    transition:  0.2s ease;
}

.button:hover{
     background: var(--northern_pine);
     transition:  0.2s ease;
}

.button a {
    font-family: Pangram, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 16px;
    color: var(--northern_pine);
    text-decoration: none;
    transition:  0.2s ease;
}

.button a:hover{
    color: var(--radient_yellow);
    transition:  0.2s ease;
}

.content {
    max-width: 800px;
    width: 100%;
}

.content h2 {
    font-family: Pangram, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 56px;
    line-height: 58px;
    margin: 0px 0px; 
}

.content p {
    font-family: Pangram, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
    margin: 25px 0px;
}

.footer {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 8% 0 35px 0;
}

.footer a {
    color: #FFFFFF;
}

.footer a:hover{
    color: var(--radient_yellow);
    transition:  0.2s ease;
}

.footer p {
    font-family: Nimbus Sans, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    margin: 0px 0px;
}

.footer p:first-child{
    padding-right: 25px;
}

.logo-icon {
    height: 52px;
}

.logo-wordmark {
    height: 27.87px;
}

@media (max-width: 922px) {

    .content h2 {
        font-size: 34px;
        line-height: 34px;
    }

    .content p {
        font-size: 12px;
        line-height: 20px;
    }

    .footer {

    }
}
