* {
    cursor: url("../img/05.jpeg") 64 64, auto;
}

body,
html {
    width: 100%;
    height: 100svh;
}

p {
    font-size: 1.5em;
    font-family: 'Times New Roman', Times, serif;
}

h2 {
    position: absolute;
    top: 40%;
    width: 100%;
    font-size: 3em;
    text-align: center;
    color: #fff;
    transform: translateY(-50%);
    z-index: 1002;
}

img {
    width: 40%;
    height: auto;
}

span {
    display: inline;
    padding: 0;
    background: transparent;
    color: inherit;
    font-size: inherit;
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
    z-index: 1;
}

#back {
    background-image: url("../img/06.jpeg");
    background-repeat: no-repeat;
    background-size: 100%;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: -50px;
    left: 0;
    z-index: -1;
}

#main {
    padding: 10%;
    background: none;
    border-radius: 0;
    box-shadow: none;
    z-index: 1;
}

#asia {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 20%;
    animation: was 2s infinite;
    z-index: 1010;
}

#quote {
    animation: expandWordSpacing 15s cubic-bezier(0.25, 0.1, 0.25, 1) infinite;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    bottom: 40px;
    color: black;
    display: inline-block;
    font-size: 1.5em;
    font-style: italic;
    left: 0;
    overflow: hidden;
    padding: 10px;
    position: fixed;
    text-align: center;
    text-decoration: underline;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    width: 100%;
    z-index: 10;
}

.bayram {
    display: flex;
    flex-direction: column;
}

.leaf {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1001;
}

.leaf img {
    width: 75px;
    height: 75px;
}

.leaf div {
    position: absolute;
    display: block;
}

.leaf div:nth-child(1) {
    left: 20%;
    animation: fall 22s linear infinite;
    animation-delay: -2s;
}

.leaf div:nth-child(2) {
    left: 70%;
    animation: fall 18s linear infinite;
    animation-delay: -4s;
}

.leaf div:nth-child(3) {
    left: 10%;
    animation: fall 21s linear infinite;
    animation-delay: -7s;
}

.leaf div:nth-child(4) {
    left: 50%;
    animation: fall 24s linear infinite;
    animation-delay: -5s;
}

.leaf div:nth-child(5) {
    left: 85%;
    animation: fall 19s linear infinite;
    animation-delay: -5s;
}

.leaf div:nth-child(6) {
    left: 15%;
    animation: fall 23s linear infinite;
    animation-delay: -10s;
}

.leaf div:nth-child(7) {
    left: 90%;
    animation: fall 20s linear infinite;
    animation-delay: -4s;
}

.leaf2 {
    transform: scale(1.6) translate(5%, -5%) rotate(15deg);
    z-index: 1003;
}

.leaf3 {
    transform: scale(0.8) translate(-5%, 10%) rotate(170deg);
    z-index: 1004;
}

.tail {
    position: absolute;
    width: 32px;
    height: 32px;
    pointer-events: none;
}

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

@keyframes was {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}

@keyframes expandWordSpacing {
    0% {
        word-spacing: 0;
    }

    100% {
        word-spacing: 15vw;
    }
}

@keyframes fall {
    0% {
        top: -30%;
        transform: translateX(20px) rotate(0deg);
    }

    20% {
        transform: translateX(-20px) rotate(45deg);
    }

    40% {
        transform: translateX(20px) rotate(90deg);
    }

    60% {
        transform: translateX(-20px) rotate(135deg);
    }

    80% {
        transform: translateX(20px) rotate(180deg);
    }

    100% {
        top: 150%;
        transform: translateX(-20px) rotate(225deg);
    }
}