/* ELEMENT LEVEL */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    color: white;
    background-color: #ff4e08;
    text-align: center;
    font-family: "Source Code Pro";
    font-size: 24px;
    line-height: 42px;
}

section {
    font-weight: bold;
    margin-bottom: 48px;
}

a {
    color: white;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* CLASS LEVEL */

.copy_item {
    color: white;
    cursor: pointer;
    display: none !important;
}

.copy_item:hover {
    color: black;
}

/* ID LEVEL */

#header {
    margin-bottom: 0px;
}

#logo {
    /* margin-top: 32px; */
    max-width: 450px;
}

#slogan {
    font-size: 36px;
}

#footer {
    padding: 0px 24px;
    line-height: 24px;
    font-size: 12px;
}

#flags {
    max-width: 96px;
    margin-top: 24px;
}

/* MEDIA QUERIES */

@media (max-width: 600px) {

    body {
        padding: 0px 24px;
    }

    section {
        font-size: 20px;
    }

    #slogan {
        font-size: 32px;
    }

    #logo {
        max-width: 240px;
    }

    #footer {
        padding: 0px 24px;
        line-height: 24px;
        font-size: 10px;
    }

}