@font-face {
    font-family: "Peanotes";
    src: url(../assets/fonts/Peanotes-Regular.otf) format(opentype);
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: "Poppins";
    src: url(../assets/fonts/Poppins-Regular.ttf) format(truetype);
    font-style: normal;
    font-weight: normal;
}

:root {
    --blue: #254891;
    --red-light: #CD3133;
    --red-dark: #841313;
    --white: #FFFFFF;
    --black: #1E1E1E;
    --black-faded: rgba(0, 0, 0, 0.7);
    --box-shadow-color: var(--black);
    --red-gradient: linear-gradient(180deg, var(--red-light), var(--red-dark));
    --funny-font: "Peanotes", sans-serif;
    --standard-font: "Poppins", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
}

body {
    color: var(--black);
    background-color: var(--blue);
    font-family: var(--standard-font);
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem 0;
    font-family: var(--funny-font);
    font-size: 2rem;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

label {
    font-size: 2rem;
    font-family: var(--funny-font);
}

@media (min-width: 768px) {
    label {
        font-size: 3rem;
    }
}

select {
    font-size: 1rem;
    font-family: Arial, sans-serif;
    margin-top: 2rem;
    padding: 0.5rem 1rem;
    border: 2px solid var(--black); 
    border-radius: 0.5rem; 
    background-color: var(--white); 
    outline: none;
    cursor: pointer; 
}

@media (min-width: 768px) {
    select {
        font-size: 1.5rem;
    }
}



main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.christmas-decor {
    height: 100%;
    overflow: hidden;
}
.christmas-decor img {
    width: 200%;
    margin-bottom: -0.5rem;
    height: auto;
    object-fit: cover;
}

@media (min-width: 768px) {
    .christmas-decor img {
        width: 100%
    }
}