/* Varibles */
:root {
    --main: #ff0000;
    --bg-color: #121212;
    --text-color: #ffffff;
}

/* Styling */
/* Body */
body {
    font-family: Arial, sans-serif;
    background-color: var(--bg-color);
}

/* General */
.main {
    color: var(--main);
}

.secondary {
    color: gray;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Container */
.container {
    border-radius: 10px;
    position: fixed;
    border: 1px red solid;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    color: var(--text-color);
    text-align: center;
    width: 30%;
}

.container h1 {
    padding-left: 20px;
    padding-right: 20px;
}

.container p {
    padding-left: 40px;
    padding-right: 40px;
    margin-top: 0px;
}

.container button {
    width: 40%;
    height: 40px;
    font-size: 20px;
    background-color: var(--bg-color);
    color: var(--main);
    border-radius: 5px;
    border: 1px var(--main) solid;
    margin-bottom: 10px;
}

.container button:hover {
    opacity: 0.5;
    transition: all 100ms;
}

/* Floating Buttons */
.backToHome {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--button-bg);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text-color);
    transition: background-color 0.3s, transform 0.5s;
}

.backToHome:hover {
    background-color: var(--button-hover);
}

.theme-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--button-bg);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: background-color 0.3s, transform 0.5s;
}

.theme-toggle:hover {
    background-color: var(--button-hover);
}