body {
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
    background-color: #e7f5fc;
    text-align: center;
    font-size: 18px;
    line-height: 1.9;
}
header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #cadbf7;
    padding: 7px;
    border-bottom: 3px solid #5f7eb3;
}
h1 {
    font-size: 2.3em;
}
h2 {
    font-size: 1.5em;
}
.logo {
    max-width: 331px;
    height: 63px;
}
header a {
    text-decoration: none;
    border-bottom: none;
}
header a:hover {
    text-decoration: none;
    border-bottom: none;
}
header a img {
    display: block;
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
}
.page-title {
    font-size: 2.1em;
    text-align: center;
    margin-top: 13px;
    margin-bottom: 23px;
}
.not-found {
    font-size: 3em;
    text-align: center;
    color: #2c0d81;
}
a {
    color: #981414;
    text-decoration: none;

}
a:hover {
    text-decoration: none;
    border-bottom: 3px solid #428f4e;
}
a:active {
    color: #cd4e7c;
}
.container {
    max-width: 870px;
    margin: 10px auto;
    padding: 7px;
    background-color: transparent;
    border-radius: 7px;
    margin-top: 3%;
}
footer {
    background-color: #021026;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 1em;
    bottom: 0;
    width: 100%;
}
footer p {
    margin: 0;
}
.about {
    background-color: #d3daef;
    padding: 17px;
    margin-top: 27px;
    border-radius: 7px;
    text-align: left;
    font-size:1.1em;
    color: #000;
    border: 2px solid #ccc;
}
.note {
    background-color: #fff;
    border-radius: 7px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}
.note h2 {
    color: #034f10;
    font-size: 1.5em;
    margin-bottom: 10px;
}
.note ul {
    list-style-type: none;
    margin-left: 7px;
    padding: 0;
    color: #000;
}
.note li::before {
    content: '✓';
    color: #0e671d;
    font-weight: bold;
    display: inline-block; 
    width: 1.5em;
}
.note p {
    color: #000;
    margin-top: 15px;
    line-height: 1.8;
}
.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}
.button-container button {
    margin: 10px;
    padding: 20px 20px;
    font-size: 21px;
    color: #ffffff;
    border-radius: 7px;
    border: 2px solid transparent;
    cursor: pointer;
    font-weight: 700;
}
#print-bw {
    background-color: black;
}

#print-color {
    background-color: green;
}
#print-cmyk {
    background: linear-gradient(to right, cyan, magenta, yellow, black);
    background-size: 400% 100%;
    background-repeat: no-repeat;
    color: #000000;
}
@media screen and (max-width: 600px) {
    .button-container {
        flex-direction: column;
    }
}
.button-container button:hover {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.button-container button:active {
    transform: translateY(4px);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}