@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;600&family=Raleway:wght@100;400&display=swap');

* {
    box-sizing: border-box;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    background: linear-gradient(0deg, rgba(255,112,122,0.8) 0%, rgba(255,112,122,1) 35%);
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;
}

header {
    margin: 0 0 0 0;
    width: 100%;
    font-family: Montserrat, sans-serif;
    color: purple;
}

header h1 {
    font-size: 5rem;
    font-weight: 600;
    line-height: 4rem;
    letter-spacing: -0.5rem;
}

.content-wrapper {
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.content-wrapper p {
    font-family: Montserrat, sans-serif;
    color: purple;
    font-size: 100px;
    font-weight: 600;
    letter-spacing: -0.5rem;
}

.first-line {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer {
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
}

footer h3 {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
    letter-spacing: -0.1rem;
    color: purple;
}

/* Calendula */

.calendula {
    width: 100vw;
    height: 100vh;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.calendula svg{
    width: 40%;
    height: 40%;
    filter: drop-shadow(3px 5px 2px rgb(0 0 0 / 0.4));
    animation: calendula_anime 10s infinite;
}

@keyframes calendula_anime {
    from {
        transform: rotateZ(0deg);
    }
    to {
        transform: rotateZ(360deg);
    }

}