@font-face {
    font-family: 'Steelfish Rg';
    src: url('assets/SteelfishRg-BoldItalic.eot');
    src: url('assets/SteelfishRg-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('assets/SteelfishRg-BoldItalic.woff2') format('woff2'),
        url('assets/SteelfishRg-BoldItalic.woff') format('woff'),
        url('assets/SteelfishRg-BoldItalic.ttf') format('truetype'),
        url('assets/SteelfishRg-BoldItalic.otf') format('opentype');
    font-display: swap;
}

body {
    margin: 0;
    display: flex;
    height: 100%;
    width: 100%;
    background-color: #4F6F52;
    background-image: linear-gradient(#1A4D2E, #4F6F52);
    background-attachment: fixed;
    color: #fffae6;
    font-family: Verdana, sans-serif;
    align-items: center;
}

.container {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.logo-container {
    position: relative;
    display: block;
    font-family: 'Steelfish Rg', bold italic;
    top: 5vh;
    transform-origin: center;
}

.logo-text {
    position: relative;
    display: block;
    font-family: 'Steelfish Rg', bold italic;
    top: 4vh;
    white-space: nowrap;
}

.line {
    display: block;
    font-size: 20vh;
    text-shadow: 1px 2px #CCCCCC;
}

.tagline {
    display: block;
    font-size: 4vh;
    margin-top: -1vh;
    text-align: right;
    text-shadow: 0.5px 1px #CCCCCC;
}

.image-container {
    position: relative;
}

.image-container img {
    position: absolute;
    width: auto;
    height: 20vh;
    bottom: -15vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    -webkit-filter: drop-shadow(5px 5px 5px #222);
    filter: drop-shadow(5px 5px 5px #222);
}

.circle-accent {
    display: inline-block;
    width: 2vh;
    height: 2vh;
    background-color: #FFFAE6;
    border-radius: 50%;
    margin: 0 0 0 2vh;
    vertical-align: middle;
}

.content-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 16vh;
    width: 100%;
    color: #112233;
}

.box {
    flex: 1 1 calc(50% - 20px);
    margin: 10px;
    background-color: #DAD3BE;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px 0 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.notification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    padding: 15px;
    z-index: 1000;
    opacity: 1;
    transition: opacity 2s ease-in-out;
}

.notification#error {
    background-color: #fc5950;
}

.notification.fade-out {
    opacity: 0;
}

.full-width-div {
    display: block;
    width: 100%;
    background-color: #DAD3BE;
    color: #112233;
    padding: 20px;
    text-align: left;
    margin: 20px 10px;
    border-radius: 10px 0 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
    text-align: center;
}

.input-wrap {
    display: flex;
    border-radius: 5px;
    background-color: #EEEEEE;
    padding: 10px;
    margin: 10px auto 0px auto;
    width: 90%;
    text-align: left;
    flex-wrap: wrap;
}

.input-wrap label, .input-wrap input {
    margin-top: auto;
}

.input-wrap input {
    outline: none;
    border: none;
    box-sizing: border-box;
    flex-grow: 1;
    min-width: 0;
}

.input-wrap:hover, .input-wrap input:hover, .input-wrap textarea:hover {
    cursor: pointer;
}

.input-wrap.btn-wrap {
    text-align: center;
}

.warning {
    padding-left: 2vw;
    font-style: italic;
    color: #bb0011;
    flex-grow: 1;
}

form {
    display: inline-block;
    width: 90%;
    box-sizing: border-box;
    margin-top: 20px;
    align-items: center;
    text-align: center;
    position: relative;
}

form label {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

form input,
form textarea {
    width: auto;
    padding: 10px;
    font-size: 1em;
    box-sizing: border-box;
    background-color: #EEEEEE;
    outline: none;
    border: none;
    font-family: 'Courier New', monospace;
}

form textarea {
    width: 100%;
}

.footer {
    font-size: 0.75em;
}

@media (max-width: 768px) {
    .box {
        flex: 1 1 100%;
        margin: 10px 0;
    }
}

@media (max-width: 1200px) {
    .logo-container {
        transform: scale(0.8);
        top: 3vh;
    }
    .content-container {
        margin-top: 7vh;
    }
}

@media (max-width: 900px) {
    .logo-container {
        transform: scale(0.6);
        top: -1vh;
    }
    .content-container {
        margin-top: 0vh;
    }
}

@media (max-width: 600px) {
    .logo-container {
        transform: scale(0.4);
        top: -4vh;
    }
    .content-container {
        margin-top: -6vh;
    }
}