:root {
    --primary-color: hwb(346.3 43.1% 43.1%)
}

body {
    color: #000000;
    background-color: hwb(116.8 73.3% 19.2%);
    padding: 16px;
    background-clip: padding-box;
}

.full-screen {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

img,
div {
    max-width: 100%;
}

/* small screen sizes*/

@media (max-width: 400px) {
    .full-screen h1 {
        font-size: 30px;
    }
    .w3-content {
        font-size: 15px;
    }
}

@media (max-width: 600px) and (min-width: 401px) {
    .full-screen h1 {
        font-size: 40px;
    }
    .w3-content {
        font-size: 15px;
    }
}

/* adjustments of template classes */

.w3-content {
    font-size: 16px;
    max-width: 700px;
    text-align: center;
}

.w3-tag {
    margin: 2rem 2rem;
    background-color: var(--primary-color);
}

.w3-greyscale-min {
    filter: grayscale(30%)
}
