body {
    margin: 0 10%;
}

.container {
    border: 2px dashed #000;
    margin: 30px auto;
    padding: 10px;
    background-color: #ddd;
    box-shadow: 10px 10px 5px gray;
}

h1 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 700;
    font-size: 3em;
}

h2 {
    font-family: Palatino, 'Times New Roman', Times, serif;
    font-weight: 500;
    font-size: 2em;
}

p {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    font-size: 1em;
}

.georgia {
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.palatino {
    font-family: Palatino, 'Times New Roman', Times, serif;
}

.segoe-ui {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.bold {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

.regular {
    font-style: normal;
}

.underline {
    text-decoration: underline;
}

.font-panel {
    width: 45%;
    display: inline-block;
}

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

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

.color-container {
    display: inline-flex;
    width: 100%;
}

.black {
    border: 1px solid #fff;
    background-color: #000;
    color: #fff;
}

.green {
    border: 1px solid #000;
    background-color: #02c91b;
}

.light-blue {
    border: 1px solid #000;
    background-color: #02b0c9;
}

.pink {
    border: 1px solid #000;
    background-color: #ff00f7;
}