:root {
    --primary: #6a8a73;
    --secondary: #fefae0;
    --secondary-font-color: aliceblue;
    --footer-color: #79ba1e;
}

* {
    margin: 0;
    padding: 0;
}
/* ===================== utility classes =================== */
.description-container-width {
    width: 60%;
}

.hr-style {
    padding: .5% 0 1% 0;
}

.custom-hr {
    border: 0;
    background-color: black;
    height: 1.5px;
}

.h2-container {
    padding: 0 0 2%;
    text-align: center;
}

.font-sizing {
    font-size: 19px;
}

/* ===================== header section ==================== */
header {
    background-color: var(--primary);
    display: flex;
    justify-content: center;
}

article {
    font-size: 1em;
}

h1 {
    font-family: "Bona Nova SC", serif;
    font-weight: bold;
    font-size: 2.4rem;
    color: var(--secondary-font-color);
}

/* ==================== main section ======================= */
.cloud-container {
    aspect-ratio: 2 / 1;
    width: 20%;
    position: absolute;
}

#hill-container {
    width: 100%;
    height: 30vh;
    bottom: 0;
    position: absolute;
    z-index: -1;
}

#right-cloud {
    top: 15%;
    right: 0;
}

.image-class {
    width: 100%;
    height: 100%;
}

#game-container {
    width: 60vw;
    height: 100vh;
    position: relative;
    box-sizing: border-box;
}

#fullscreen-btn {
    position: absolute;
    bottom: 3%;
    right: 3%;
    color: white;
    text-decoration: none;
}

#section-container {
    display: flex;
    align-items: center;
    flex-direction: column;
}

iframe {
    width: 100%;
    height: 100%;
}

main {
    position: relative;
    background-color: var(--secondary);
    padding: 2% 0 7% 0;
    line-height: 2;
    overflow: hidden;
    z-index: 1;

    font-family: "Inconsolata", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

article > p {
    text-align: center;
    text-indent: 10%;
    z-index: 10;
}

/* ====================== footer section ====================== */
footer {
    background-color: var(--footer-color);
    font-family: 'Times New Roman', Times, serif;
    color: var(--secondary-font-color);
}

#footer-info {
    display: flex;
    justify-content: space-evenly;
    list-style-type: none;
    padding: 1.5rem 0;
    font-size: 1.1rem;
}

