/* --- CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Load Fonts */
@font-face {
    font-family: "buche";
    src: url("assets/fonts/Buche-FREE.otf") format("opentype");
}

@font-face {
    font-family: "greek";
    src: url("assets/fonts/GreeksFromTheParadise.ttf") format("truetype");
}

body {
    background-color: rgb(19, 19, 19);
    text-align: center;
}

.hekate {
    position: absolute;
    top: 16%;
    left: 40%;
}

.title {
    position: absolute;
    top: 65%;
    left: 36%;
    font-family: "greek";
    font-size: 48px;
    color: rgb(249, 112, 0);
    text-shadow: rgba(255,242,0,0.86) 0px 0px 46px;
}

.comingSoon {
    position: absolute;
    top: 80%;
    left: 44%;
    font-family: "buche";
    font-size: 28px;
    color: white;
    animation: blink-animation 1s steps(2, start) infinite;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

.back-button {
    font-family: "buche";
    font-size: 22px;
    display: inline-block;
    margin-top: 40px;
    padding: 8px 14px;
    background-color: #2A3037;
    color: #dfe5e9;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #8A8E91;
    transition: background-color 0.2s ease;
}

.back-button:hover {
    background-color: #1C2A3A;
}
