:root {
    --color-primary: #fc9b40;
    --color-danger: #ff7782;
    --color-success: #41f1b6;
    --color-warning: #ffbb55;
    --color-white: #fff;
    --color-info-dark: #7d8da1;
    --color-info-light: #dce1eb;
    --color-dark: #363949;
    --color-light: rgba(132, 139, 200, 0.18);
    --color-primary-variant: #111e88;
    --color-dark-variant: #677483;
    --color-background: #f6f6f9;
    --card-border-radius: 2rem;
    --border-radius-1: 0.4em;
    --border-radius-2: 0.8em;
    --border-radius-3: 1.2em;
    --card-padding: 1.8rem;
    --padding-1: 1.2rem;
    --box-shadow: 0.2rem 3rem var(--color-light);
}

.dark-theme-variables {
    --color-background: #181a1e;
    --color-white: #202528;
    --color-dark: #edeffd;
    --color-dark-variant: #a3bdcc;
    --color-light: rgba(0, 0, 0, 0.4);
    --box-shadow: 0 2rem 3rem var(--color-light);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: var(--color-background);
}

.image { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    margin-bottom: 2rem; 
} 

.description {
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fade-in 1s ease forwards;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

h1 {
    font-weight: 800;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    text-shadow: 2px 2px 1px rgb(255, 255, 255);
}

p {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 20px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.button {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--border-radius-1);
    padding: 0.5rem 1rem;
    font-size: 0.87rem;
    cursor: pointer;
    transition: all 300ms ease;
    text-decoration: none; 
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.button:hover {
    background-color: var(--color-warning);
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

body{
    background-color: #181a1e;
    font-size: 40px;
}


.description{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: white;
    font-size: 40px;
    
}