﻿/* Reset / Sane Defaults */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    margin: 0;
    background-color: #262523;
    font-family: Arial;
    color: #68a346;
    line-height: 1.5;
}

a {
    color: #68a346;
    font-size: 2em;
    text-decoration: none;
}

    a:hover {
        color: #8e6244;
        font-size: 2em;
        text-decoration: none;
    }

img {
    height: auto;
}



/* Layout */
.container {
    padding: 1.5rem;
    max-width: 100%;
}

.logo {
    width: clamp(368px, 100vw, 737px);
    height: auto;
}

.main {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 20%;
    left: 0;
    right: 0;
    width: 737px; /* Need a specific value to work */
    height: 121px;
    background-color: transparent;
}

#status {
    position: absolute;
    margin: auto;
    top: 1em;
    right: 1em;
    color: #c3bfb9;
    line-height: 1.5em;
}

#description {
    color: #c3bfb9;
    line-height: 1.5em;
}




@media screen and (max-width: 600px) {
    .hide-on-small {
        display: none;
    }
}

.rotate-image {
    transform: rotate(90deg); /* Rotates the image 90 degrees clockwise */
}