@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&display=swap");
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    font-size: 62.5%;
    box-sizing: border-box;
}

body {
    background-color: #8B0000!important;
}


/* Container do texto "Feliz natal" */

.text {
    position: absolute;
    top: 10rem;
    left: 30rem;
    text-align: center;
    animation: pop 1s ease 2.5s backwards;
    -webkit-animation: pop 1s ease 2.5s backwards;
}

@media (max-width: 1110px) {
    .text {
        left: 20rem;
    }
}

@media (max-width: 942px) {
    .text {
        left: 15rem;
    }
}

@media (max-width: 818px) {
    .text {
        left: 10rem;
    }
}

@media (max-width: 730px) {
    .text {
        left: 5rem;
    }
}

@media (max-width: 730px) {
    .text {
        left: 3rem;
    }
}


/* Texto de feliz natal */

.merry {
    font-family: "Dancing Script", cursive;
    color: rgb(255, 234, 0);
    font-size: 5rem;
}

@media (max-width: 654px) {
    .merry {
        font-size: 4rem;
    }
}

.merry--0 {
    animation: appear 0.7s ease 1.5s backwards;
    -webkit-animation: appear 0.7s ease 1.5s backwards;
}

.merry--1 {
    animation: appear 0.7s ease 2s backwards;
    -webkit-animation: appear 0.7s ease 2s backwards;
}

.merry--2 {
    animation: appear 0.7s ease 2.3s backwards;
    -webkit-animation: appear 0.7s ease 2.3s backwards;
}

.merry--3 {
    animation: appear 0.7s ease 2.6s backwards;
    -webkit-animation: appear 0.7s ease 2.6s backwards;
}


/* Container da árvore de natal */

.tree {
    width: max-content;
    height: max-content;
    margin: 5rem auto;
    position: relative;
}


/* A estrela no topo da árvore */

.star {
    width: 10rem;
    height: 10rem;
    clip-path: polygon( 49% 0, 61% 30%, 100% 35%, 71% 57%, 80% 90%, 47% 67%, 20% 90%, 30% 56%, 1% 36%, 37% 30%);
    background-color: #f7c600;
    filter: drop-shadow(0 0.1rem 0.3rem rgba(0, 0, 0, 0.1));
    -webkit-filter: drop-shadow(0 0.1rem 0.3rem rgba(0, 0, 0, 0.9));
    position: relative;
    z-index: 100;
}


/* Os triangulos dentro da estrela */

.mini__star {
    position: absolute;
}

.mini__star--1 {
    width: 2.5rem;
    height: 4.2rem;
    top: 0.1rem;
    left: 53%;
    clip-path: polygon(36% 0, 0 70%, 40% 100%);
    transform: translateX(-50%);
    background-color: #ffea00;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.mini__star--2 {
    width: 7.5rem;
    height: 2.1rem;
    top: 43%;
    right: 0.2rem;
    background-color: #ffea00;
    clip-path: polygon(48% 0, 40% 61%, 100% 15%);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.mini__star--3 {
    background-color: #ffea00;
    width: 4.2rem;
    height: 5rem;
    clip-path: polygon(81% 12%, 42% 0, 100% 75%);
    bottom: 0;
    right: 2.3rem;
}


/* Triangulos que compõem a árvore de natal */

.triangle__1 {
    clip-path: polygon(0 71%, 48% 0, 100% 71%, 67% 73%, 49% 100%, 28% 71%);
    width: 10rem;
    height: 10rem;
    background-color: #5bcf64;
    margin-top: -4.2rem;
    position: relative;
    z-index: 10;
}

.shadow__1 {
    clip-path: polygon(0 71%, 48% 0, 100% 71%, 67% 73%, 49% 100%, 28% 71%);
    width: 10rem;
    height: 10rem;
    background-color: rgba(10, 117, 99, 0.876);
    margin-top: -14.3rem;
    transform: translateY(5rem);
    -webkit-transform: translateY(5rem);
    -moz-transform: translateY(5rem);
    -ms-transform: translateY(5rem);
    -o-transform: translateY(5rem);
}

.triangle__2 {
    clip-path: polygon(0 71%, 48% 0, 100% 71%, 67% 73%, 49% 100%, 28% 71%);
    width: 15rem;
    height: 15rem;
    background-color: #00af00;
    right: 50%;
    top: 70%;
    position: absolute;
    z-index: -1;
    transform: translateX(50%);
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
}

.shadow__2 {
    clip-path: polygon(0 71%, 48% 0, 100% 71%, 67% 73%, 49% 100%, 28% 71%);
    width: 15rem;
    height: 15rem;
    background-color: rgba(10, 117, 99, 0.876);
    top: 77%;
    right: 50%;
    transform: translateX(50%);
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
    position: absolute;
    z-index: -2;
}

.triangle__3 {
    clip-path: polygon(0 71%, 48% 0, 100% 71%, 67% 73%, 49% 100%, 28% 71%);
    width: 20rem;
    height: 15rem;
    background-color: #5bcf64;
    right: 50%;
    top: 125%;
    position: absolute;
    z-index: -3;
    transform: translateX(50%);
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
}

.shadow__3 {
    clip-path: polygon(0 71%, 48% 0, 100% 71%, 67% 73%, 49% 100%, 28% 71%);
    width: 20rem;
    height: 15rem;
    background-color: rgba(10, 117, 99, 0.876);
    top: 131%;
    right: 50%;
    transform: translateX(50%);
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
    position: absolute;
    z-index: -4;
}

.triangle__4 {
    clip-path: polygon(0 71%, 48% 0, 100% 71%, 67% 73%, 49% 100%, 28% 71%);
    width: 25rem;
    height: 15rem;
    background-color: #00af00;
    right: 50%;
    top: 180%;
    position: absolute;
    z-index: -5;
    transform: translateX(50%);
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    -o-transform: translateX(50%);
}


/* Caule da árvore */

.post__container {
    position: absolute;
    top: 32rem;
    left: 2.7rem;
    display: flex;
    z-index: -10;
}

.post__1 {
    height: 10rem;
    width: 2rem;
    background-color: #9b4f2c;
    border-radius: 0 0 0 5rem;
    -webkit-border-radius: 0 0 0 5rem;
    -moz-border-radius: 0 0 0 5rem;
    -ms-border-radius: 0 0 0 5rem;
    -o-border-radius: 0 0 0 5rem;
}

.post__2 {
    height: 10rem;
    width: 2rem;
    background-color: #c78100;
    border-radius: 0 0 5rem 0;
    -webkit-border-radius: 0 0 5rem 0;
    -moz-border-radius: 0 0 5rem 0;
    -ms-border-radius: 0 0 5rem 0;
    -o-border-radius: 0 0 5rem 0;
}

.post__shad {
    position: absolute;
    top: 0rem;
    width: 7rem;
    height: 5rem;
    border-radius: 3rem;
    -webkit-border-radius: 3rem;
    -moz-border-radius: 3rem;
    -ms-border-radius: 3rem;
    -o-border-radius: 3rem;
    background-color: rgba(10, 117, 99, 0.411);
    clip-path: polygon(100% 0, 0 0, 51% 100%);
    transform: translateX(-21%);
    -webkit-transform: translateX(-21%);
    -moz-transform: translateX(-21%);
    -ms-transform: translateX(-21%);
    -o-transform: translateX(-21%);
}


/* Recipiente da árvore */

.ball {
    position: absolute;
    bottom: -3rem;
    width: 14rem;
    height: 6rem;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    z-index: -20;
    transform: translateX(-30%);
    -webkit-transform: translateX(-30%);
    -moz-transform: translateX(-30%);
    -ms-transform: translateX(-30%);
    -o-transform: translateX(-30%);
}


/* Enfeites do corpo da árvore */

.sticker {
    width: 2rem;
    height: 1rem;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    background-color: #19381c2c;
    /* background-color: red; */
    position: absolute;
    left: 2rem;
    top: 5rem;
}

.sticker__4 {
    width: 5rem;
    height: 2rem;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    background-color: #19381c2c;
    position: absolute;
    right: 5rem;
    top: 5rem;
}

.sticker__5 {
    width: 5rem;
    height: 2rem;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    background-color: #19381c2c;
    position: absolute;
    left: 5rem;
    top: 10rem;
}

.sticker__6 {
    width: 4rem;
    height: 2rem;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    background-color: #19381c2c;
    position: absolute;
    left: 5rem;
    top: 7rem;
}

.sticker__7 {
    width: 2rem;
    height: 1rem;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    background-color: #19381c2c;
    position: absolute;
    left: 3rem;
    top: 7rem;
}

.sticker__8 {
    width: 4rem;
    height: 2rem;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    background-color: #19381c2c;
    position: absolute;
    right: 5rem;
    top: 7rem;
}

.sticker__9 {
    width: 2rem;
    height: 1rem;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    background-color: #3c523e2c;
    position: absolute;
    right: 3rem;
    top: 7rem;
}


/* Bolas coloridas na árvore */

.light {
    width: 2rem;
    height: 2rem;
    border-radius: 2rem;
    background-color: #0000CD;
    position: absolute;
    top: 50%;
    left: 50%;
}

.light--1 {
    width: 2rem;
    height: 2rem;
    border-radius: 2rem;
    background-color: #ffd700;
    position: absolute;
    top: 60%;
    left: 15%;
    transform: translate(-50%, -30%);
    z-index: 100;
}

.light--2 {
    width: 2rem;
    height: 2rem;
    border-radius: 2rem;
    background-color: rgb(255, 0, 0);
    position: absolute;
    top: 60%;
    right: 5%;
    transform: translate(-50%, -30%);
    z-index: 100;
}

.light--4 {
    width: 2rem;
    height: 2rem;
    border-radius: 2rem;
    background-color: #000000;
    position: absolute;
    top: 60%;
    left: 15%;
    transform: translate(-50%, -30%);
    z-index: 100;
}

.light--3 {
    width: 2rem;
    height: 2rem;
    border-radius: 2rem;
    background-color: #ff00c8;
    position: absolute;
    top: 65%;
    right: 45%;
}

.light--5 {
    width: 2rem;
    height: 2rem;
    border-radius: 2rem;
    background-color: #ffffff;
    position: absolute;
    top: 60%;
    right: 5%;
    transform: translate(-50%, -30%);
    z-index: 100;
}

.light--6 {
    width: 2rem;
    height: 2rem;
    border-radius: 2rem;
    background-color: #800080;
    position: absolute;
    top: 50%;
    right: 70%;
    transform: translate(-50%, -30%);
    z-index: 100;
}

.light--7 {
    width: 2rem;
    height: 2rem;
    border-radius: 2rem;
    background-color: #A3A2A0;
    position: absolute;
    top: 70%;
    right: 40%;
    transform: translate(-50%, -30%);
    z-index: 100;
}


/* Caixas de presentes */

.boxes {
    position: absolute;
    left: 35%;
    top: 45rem;
    width: max-content;
    display: flex;
}

.box {
    position: relative;
}

.box--1 {
    position: relative;
    margin-left: 5rem;
}

.box--2 {
    position: absolute;
    margin-left: 5rem;
    top: 6rem;
    left: 4rem;
}


/* corpo da caixa */

.body {
    width: 12rem;
    height: 7rem;
    clip-path: polygon(0 0, 100% 0, 93% 100%, 7% 99%);
    position: relative;
    background-color: #005C01;
}


/* Tampa da caixa */

.cover {
    width: 15rem;
    height: 2rem;
    position: relative;
    background-color: #005C01;
    margin-bottom: 0rem;
    clip-path: polygon(0 0, 100% 0, 91% 100%, 9% 100%);
    transform: translateX(-1.5rem);
    -webkit-transform: translateX(-1.5rem);
    -moz-transform: translateX(-1.5rem);
    -ms-transform: translateX(-1.5rem);
    -o-transform: translateX(-1.5rem);
}

.body::before,
.cover::before,
.cover::after,
.body::after {
    position: absolute;
    content: " ";
    top: 0;
    width: 35%;
    height: 100%;
}

.body::before {
    left: 0;
    background-color: #B70D00;
}

.body::after {
    right: 0;
    background-color: #B70D00;
}

.body--1::before {
    left: 0;
    background-color: #B70D00;
}

.body--1::after {
    right: 0;
    background-color: #B70D00;
}

.body--2::before {
    left: 0;
    background-color: #B70D00;
}

.body--2::after {
    right: 0;
    background-color: #B70D00;
}

.cover::before {
    background-color: #B70D00;
    left: 0;
}

.cover::after {
    background-color: #B70D00;
    right: 0;
}

.cover--1::before {
    background-color: #B70D00;
    left: 0;
}

.cover--1::after {
    background-color: #B70D00;
    right: 0;
}

.cover--2::before {
    background-color: #B70D00;
    left: 0;
}

.cover--2::after {
    background-color: #B70D00;
    right: 0;
}


/* Prato da caixa */

.plate {
    position: absolute;
    top: 5rem;
    right: 0rem;
    width: 19rem;
    height: 7rem;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}


/* Pega da caixa */

.hold {
    width: 5rem;
    height: 2rem;
    border-radius: 5rem 5rem 0 0;
    -webkit-border-radius: 5rem 5rem 0 0;
    -moz-border-radius: 5rem 5rem 0 0;
    -ms-border-radius: 5rem 5rem 0 0;
    -o-border-radius: 5rem 5rem 0 0;
    border: 3px solid #B70D00;
    position: absolute;
    top: -2rem;
    left: 40%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.hold--1 {
    border: 3px solid #B70D00;
}

.hold--2 {
    border: 3px solid #B70D00;
}


/* Animação das caixas */


/* Animação do texto */

@keyframes appear {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    75% {
        opacity: 0.9;
    }
    100% {
        opacity: 1;
    }
}

@keyframes pop {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
    100% {
        transform: scale(0.7);
        -webkit-transform: scale(0.7);
        -moz-transform: scale(0.7);
        -ms-transform: scale(0.7);
        -o-transform: scale(0.7);
    }
}


/* Animação das caixas */

@keyframes movein {
    0% {
        opacity: 0;
        transform: translateY(10rem);
        -webkit-transform: translateY(10rem);
        -moz-transform: translateY(10rem);
        -ms-transform: translateY(10rem);
        -o-transform: translateY(10rem);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
}

.animate--1 {
    animation: movein 0.2s ease-in-out 1s backwards;
    -webkit-animation: movein 0.2s ease-in-out 1s backwards;
}

.animate--2 {
    animation: movein 0.2s ease-in-out 1.3s backwards;
    -webkit-animation: movein 0.2s ease-in-out 1.3s backwards;
}

.animate--3 {
    animation: movein 0.2s ease-in-out 1.1s backwards;
    -webkit-animation: movein 0.2s ease-in-out 1.1s backwards;
}