html,
body {
    height: 100%;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #023f88;
    font-weight: 300;
}

strong {
    font-weight: 600;
}

@media (min-width: 768px) {

    section,
    main {
        height: 100%;
    }

    section {
        border-left: 100px solid #ffc210;
        display: flex;
        flex-flow: column;
    }

    header,
    main {
        padding: 0 40px;
    }

    footer {
    }

    h1 {
        font-size: 50px;
        letter-spacing: 1px;
        line-height: 120%;
    }
    
    h2 {
        font-size: 35px;
        letter-spacing: 1px;
        line-height: 125%;
    }
}

@media (max-width: 767px) {

    h1 {
        font-size: 28px;
        line-height: 110%;
    }
    
    h2 {
        font-size: 25px;
        line-height: 120%;
    }

    body {
        background-image: url("../img/responsive-bg.jpg");
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        text-align: center;
    }
}
@media (max-height: 600px) {
    body {
        background-size: inherit !important;
    }
    h1 {
        font-size: 30px;
        line-height: 125%;
    }
}

a {
    color: #ffc210;
  }
  
a:hover {
    color: #ffc210;
    text-decoration: none;
}

.text-yellow {
    color: #ffc210;
}