* {
    box-sizing: border-box;
}

body {
    background-color: #030d20;
    font-family: "proxima-nova", sans-serif;
    color: white;
    min-height: 100vh;
    min-width: 100vw;
}

#wrapper {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
}

#background {
    width: 100%;
}

a,
a:visited {
    text-decoration: none;
    color: inherit;
}

main {
    padding: 8%;
    box-sizing: border-box;
    margin-bottom: 80px;
}

#logo {
    width: 100%;
}

p {
    font-size: 2em;
    margin: 100px 0 40px 0;
    text-align: center;
}

button {
    font-family: "proxima-nova", sans-serif;
    color: white;
    font-size: 2em;
    padding: 12px 44px;
    border: 0;
    background: #08553F;
    background: linear-gradient(0deg, transparent 0, #08553F 0) top left, linear-gradient(0deg, transparent 0, #08553F 0) top right, linear-gradient(0deg, transparent 0px, #08553F 0) bottom right, linear-gradient(55deg, transparent 1rem, #08553F 0) bottom left;
    background-size: 51% 51%;
    background-repeat: no-repeat;
    border-radius: 0;
    margin: auto;
    display: block;
    cursor: pointer;
    transition: all .4s;
}

button:hover {
    color: #030D20;
    background: #FABD1B;
    background: linear-gradient(0deg, transparent 0, #FABD1B 0) top left, linear-gradient(0deg, transparent 0, #FABD1B 0) top right, linear-gradient(0deg, transparent 0px, #FABD1B 0) bottom right, linear-gradient(55deg, transparent 1rem, #FABD1B 0) bottom left;
    background-size: 51% 51%;
    background-repeat: no-repeat;
}

.cls-1 {
    fill: #fff;
}

.cls-2 {
    fill: #fabd1b;
}

.cls-3 {
    fill: #08553f;
}

.cls-4 {
    fill: #082760;
}

@media screen and (min-width: 768px) {
    #background {
        bottom: -40%;
    }
}


@media screen and (min-width: 1025px) {
    #background {
        position: absolute;
        bottom: 0;
        right: -20%;
        height: 100%;
        width: auto;
    }

    #logo {
        width: 40%;
    }

    p {
        text-align: left;
    }

    button {
        margin: 0;
    }
}

@media screen and (min-width: 1400px) {
    #background {
        right: 0;
    }

    p {
        font-size: 2.5em;
    }

    button {
        font-size: 2.5em;
    }
}