/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&family=Iceland&family=Parkinsans:wght@300..800&display=swap');

body {
    font-family: "Iceland", serif;
    background-size: 50px 50px;
    font-weight: 400;
    font-style: normal;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bg-ci {
    background-color: #1b1b1b;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

p {
    line-height: 1.6;
    margin: 0;
}

a {
    text-decoration: none;
    color: #1e90ff;
    transition: color 0.3s ease;
}

a:hover {
    color: #00bfff;
}

section,
footer,
header {
    width: 100%;
}

header {
    padding: 40px 20px;
    text-align: center;
    margin-bottom: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

footer {
    padding: 20px 0;
    text-align: center;
    background-color: #1a1a1a;
    color: #888;
    font-size: 0.9rem;
}

footer a {
    color: #888;
}

footer a:hover {
    color: #f1f1f1;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.button-primary {
    display: inline-block;
    padding: 12px 24px;
    color: #fff;
    background-color: #1e90ff;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button-primary:hover {
    background-color: #00bfff;
}

.section {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, #1f1f1f, #262626, #1f1f1f);
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 1s ease-in-out;
}

.button-primary {
    display: inline-block;
    padding: 12px 24px;
    color: #fff;
    background-color: #1e90ff;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.button-primary:hover {
    background-color: #00bfff;
    transform: scale(1.05);
}

section img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.sf-bg {
    background-color: #444444;
}

.snowflake {
    position: absolute;
    color: white;
    font-size: 1.2rem;
    pointer-events: none;
    animation: fall linear infinite;
}

@keyframes fall {
    0% {
        transform: translateY(-100%);
        opacity: 1;
    }

    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

#toggleSnow {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
}

.content-box {
    background-color: #1b1b1b;
    padding: 4rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    max-width: 700px;
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.content-box img {
    width: 6rem;
    height: 6rem;
    object-fit: cover;
    border-radius: 50%;
}

.content-box p {
    color: #f0f0f0;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 80%;
    margin-bottom: 2rem;
}

.content-box .button-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.content-box .button-container a {
    background-color: #333333;
    color: #f0f0f0;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    transition: background-color 0.3s ease;
}

.content-box .button-container a:hover {
    background-color: #444444;
}

.b-br {
    border-color: black;
}