@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    list-style: none;
    text-decoration: none;
    font-family: "Prompt", "Lato", sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background-image: url("https://dimitripeugnet.com/ratures/assets/img/cover_front.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100vh;
}

body .back {
    z-index: -1;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 27, 27, 0.4);
    backdrop-filter: blur(50px);
    position: fixed;
}

body input[name="menu-check"] {
    position: absolute;
    left: -100%;
}

body .wrapper {
    width: auto;
    height: auto;
    color: white;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

body .wrapper img {
    width: 400px;
    height: auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

body .wrapper h1 {
    font-size: 32px;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
    line-height: 32px;
}

body .wrapper p {
    font-size: 15px;
    font-weight: 300;
    text-align: center;
    opacity: 0.5;
}

body .wrapper .christmasContainer {
    position: relative;
    display: block;
    width: calc(600px - 30px);
    height: calc(120px - 30px);
    padding: 15px;
    background-color: #355542;
    border-radius: 10px;
    margin-top: 20px;
}

span.highlight {
    animation: pulse 1.5s infinite ease-in-out;
    opacity: 1;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

body .wrapper .christmasContainer h4 {
    font-size: 15px;
    max-width: calc(100% - 120px);
    font-weight: 600;
}

body .wrapper .christmasContainer h4 i {
    color: #e9d88b;
}

body .wrapper .christmasContainer p {
    text-align: left;
    max-width: calc(100% - 120px);
}

body .wrapper .christmasContainer img {
    position: absolute;
    left: calc(100% - 70px);
    top: 25px;
    width: 70px;
    height: 70px;
}

body button {
    display: block;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    border-radius: 999px;
    background-color: #e9d88b;
    color: rgb(39, 33, 15);
    font-size: 15px;
    font-weight: 300;
    outline: none;
    border: none;
    margin-top: 10px;
    transition: ease 0.3s;
}

body button i {
    font-size: 15px;
    margin-right: 10px;
    opacity: 0.5;
}

body button:hover {
    background-color: #e9d88b7a;
    cursor: pointer;
}

@media only screen and (max-width: 600px) {
    body .wrapper {
        width: calc(100% - 80px);
        left: 50%;
        top: 60px;
        transform: translate(-50%, 0%);
    }

    body .wrapper img {
        width: 80%;
    }

    body .wrapper h1 {
        font-size: 24px;
        line-height: 24px;
    }

    body .wrapper .container .time span {
        font-size: 28px;
        line-height: 28px;
    }
    
    body .wrapper .container .time h6 {
        font-size: 12px;
    }

    body .wrapper .christmasContainer {
        width: calc(100% - 30px);
        height: auto;
    }
}

body input[name="menu-check"]:checked ~ body .menu-back {
    display: block;
}