
@media (max-width: 600px) {
    .header {
        font-size: 18px;
    }
}

body {
    font-family: 'Nunito Sans', sans-serif;
    margin: 0;
    padding-top: 100px;
    padding-bottom: 50px;
}

.headerdiv {
    margin: 0;
    top: 0px;
    position: fixed;
    width: 100%;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    background-color: white;
    justify-content: center;
    align-items: center;
}

.header {
    margin: 0;
    text-align: center;
    padding: 10px;
}

.titulo {
    margin-left: 100px;
    margin-top: 50px;
    margin-bottom: 10px;
}


.container {
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5%;
}

.color-container {
    width: 100%;
}

.color-panel {
    display: inline-block;
    text-align: center;
    margin: 20px 40px;
    min-height: 100px;
}

.color-panel p {
    margin: 0;
    padding: 15px;
}

.color-label {
    padding: 12px 100px;
    border: 1px solid gray;
    margin: 0;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2);
}

.color-box {
    padding: 100px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
}

.color-hex {
    text-align: center;
    padding: 12px 100px;
    border: 1px solid gray;
    margin: 0;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2);
}

/* Colors box */

.cool-blue .color-box {
    background-color: #2d5dcc;
}

.pink .color-box {
    background-color: #d957d9;
}

.mint-green .color-box {
    background-color: #4fe0b0;
}

.beige .color-box {
    background-color: #efd9ca;
}

.boysenberry .color-box {
    background-color: #873260;
}

.battleship-gray .color-box {
    background-color: #848482;
}

.font-container {
    margin: 40px 40px 0 40px;
}

.font-panel {
    width: 45%;
    height: 400px;
    display: inline-block;
    vertical-align: top;
    margin: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2);
}

.font-panel p {
    margin: 20px;
}

.font-label {
    font-size: 20px;
    text-decoration: underline;
}

.regular {
    font-style: normal;
}

.italic {
    font-style: italic;
}

.bold {
    font-weight: 700;
}

.nunito-sans {
    font-family: 'Nunito Sans', sans-serif;
}

.source-code-pro {
    font-family: 'Source Code Pro', monospace;
}

.poppins {
    font-family: 'Poppins', sans-serif;
}

.text-container {
    margin: 40px;
}

.text-panel {
    width: 45%;
    height: 350px;
    display: inline-block;
    vertical-align: top;
    margin: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.2);
}

.text-panel h1 {
    font-weight: 700;
    font-size: 32px;
    font-family: 'Nunito Sans', sans-serif;
    margin: 30px;
}

.text-panel h2 {
    font-weight: 500;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    margin: 30px;
}

.text-panel p {
    font-weight: 400;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    margin: 30px;
}

.text-panel ul {
    margin: 20px;
    list-style-type: circle;
}

