@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@700&display=swap");

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
}

:root {
    --primary: hsl(0, 100%, 50%);
    --background-blend: #8080804d;
    --secondary: hsl(0, 100%, 30%);
    color: white;
    color-scheme: light dark;
    background-color: black;
    user-select: none;
    font-family: "Rubik";
}

img {
    pointer-events: none;
}


.container, .celebration-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
}

.container img, .celebration-container img {
    border-radius: 10px;
}

.button-Container {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.btn {
    padding: 10px 50px;
    border: none;
    background-color: rgb(0,255,0,0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background-color: rgba(0,255,0,0.5);
}

.btn:nth-child(2) {
    background-color: var(--primary);
}

.btn:nth-child(2):hover {
    background-color: rgba(255,0,0,0.5);
}

.hidden {
    display: none;
}

.celebration-container {
    animation: fadeIn 0.5s ease-in;
}

.celebration-container p {
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
}

.back-btn {
    padding: 10px 30px;
    border: none;
    background-color: rgba(255,255,255,0.2);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    margin-top: 20px;
}

.back-btn:hover {
    background-color: rgba(255,255,255,0.3);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
