html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    text-align: center;
    font-family: 'Public Sans', sans-serif;
}

.cc_dialog {
    position: fixed !important;
    width: 500px !important;
    top: auto !important;
    left: auto !important;
    right: 10px !important;
    padding: 10px !important;
    bottom: 10px !important;
}

.cc_b_ok, .cc_cp_f_save > button {
    background-color: #f178b6 !important;
    color: white !important;
}

h1 {
    color: #FF1D25;
    font-weight: bold;
}

#content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 50px;
    background-color: #ffd45b;
}

#content-top {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 200px;
}

#content-top-background {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

#content-logo {
    position: absolute;
    left: 70%;
    top: 50%;
    transform: translate(-50%, -40%);
    z-index: 1;
    height: 700px;
}

#content-top-body {
    position: absolute;
    left: 43%;
    top: 55%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 150%;
}

#content-navigation {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #f178b6;
    text-align: center;
}

#content-navigation-logo {
    display: inline-block;
    margin-bottom: 20px;
}

#content-navigation-links {
    color: white;
}

#footer {
    display: flex;
    align-items: center;
    background-color: #f178b6;
    text-align: left;
    padding: 0 10px;
    color: white;
    height: 50px;
    border-top: 3px solid white;
    font-size: 14px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

#footer-left {
    flex: 1;
}

#footer-right {

}

.footer-link {
    display: inline-block;
    margin-right: 5px;
    text-decoration: none;
    color: inherit;
}

.footer-link-social {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #f285bd;
}

@media only screen and (max-width: 1200px) {
    #content-logo {
        left: 80%;
        height: 400px;
    }
}

@media only screen and (max-width: 600px) {
    #content-logo {
        display: none;
    }

    #content-top-body {
        left: 50%;
        top: 50%;
    }

    #content-navigation {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    #content-navigation-logo {
        margin-bottom: 0;
    }

    #footer {

    }
}