html {
    height: 100vh;
    width: 100vw;
}

body {
    overflow: hidden;
    background-position: bottom;
    background-size: cover;
    height: 100vh;
    width: 100vw;
}

.led {
    position: absolute;
    bottom: 10px;
    right: 10px;
    height: 10px;
    width: 10px;
    background-color: red;
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 1);
    border-radius: 50px;
    transform: scale(1);
    animation: pulseDown 2s infinite;
}

.up {
    background-color: greenyellow !important;
    box-shadow: 0 0 0 0 rgba(0, 255, 0, 1);
    animation: pulseUp 2s infinite;
}

@keyframes pulseUp {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 255, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
    }
}

@keyframes pulseDown {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.primary-btn {
    display: inline-block;
    font-size: 15px;
    font-family: "Play", sans-serif;
    padding: 14px 32px 12px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    z-index: 1;
    width: 200px;
    text-align: center;
}

a {
    color: #007bff;
    text-decoration: none;
    background-color: transparent;
}

.primary-btn:hover::after {
    height: 100%;
    width: 100%;
}

.primary-btn::after {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 30px;
    width: 30px;
    border-right: 2px solid #00bfe7;
    border-bottom: 2px solid #00bfe7;
    content: "";
    z-index: -1;
    -webkit-transition: all, 0.7s;
    -o-transition: all, 0.7s;
    transition: all, 0.7s;
}

.primary-btn:hover::before {
    height: 100%;
    width: 100%;
}

.primary-btn::before {
    position: absolute;
    left: 0;
    top: 0;
    height: 30px;
    width: 30px;
    border-left: 2px solid #00bfe7;
    border-top: 2px solid #00bfe7;
    content: "";
    z-index: -1;
    -webkit-transition: all, 0.7s;
    -o-transition: all, 0.7s;
    transition: all, 0.7s;
}

.view {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: skew(-5deg);
}

.left,
.right {
    bottom: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
}

.left {
    left: -15%;
    right: 50%;
}

.divider {
    background-color: #fc0;
    border-left: solid 2px #000;
    border-right: solid 2px #000;
    bottom: -15%;
    left: 49.5%;
    position: absolute;
    right: 49.5%;
    top: -15%;
    z-index: 1;
}

.right {
    left: 50%;
    right: -15%;
}

.sun,
.moon {
    bottom: -15%;
    left: -15%;
    position: absolute;
    right: -15%;
    top: -15%;
    transform: skew(5deg);
}

.sun {
    background-image: url(https://t3.ftcdn.net/jpg/06/40/01/42/360_F_640014231_h19dLRItvzaLPSuIHPKDIOWmLeK0pFUV.jpg);
    background-position: center center;
    background-size: cover;
}

.moon {
    background-image: url(https://img.freepik.com/premium-photo/islamic-quran-book-smooth-desktop-wallpaper-generative-ai_635062-1850.jpg);
    background-position: center center;
    background-size: cover;
}



@keyframes animateBg {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.star {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 0 0 8px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 255, 1);
    animation: animate 300s linear infinite;
}

.star::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, #fff, transparent);
}

@keyframes animate {
    0% {
        transform: rotate(315deg) translateX(0);
        opacity: 0.7;
    }

    5% {
        opacity: 0.7;

    }

    10% {
        transform: rotate(315deg) translateX(-1500px);
        opacity: 0;

    }

    100% {
        transform: rotate(315deg) translateX(-1500px);
        opacity: 0;

    }

}

.star:nth-child(1) {
    top: -10px;
    right: 0;
    left: initial;
    animation-delay: 5s;
    animation-duration: 40s;
}

.star:nth-child(2) {
    top: 0;
    right: 80px;
    left: initial;
    animation-duration: 10s;
}

.star:nth-child(3) {
    top: 80px;
    right: 0px;
    left: initial;
    animation-delay: 50.4s;
    animation-duration: 2s;
}

.star:nth-child(4) {
    top: 0;
    right: 180px;
    left: initial;
    animation-delay: 80.6s;
    animation-duration: 1.5s;
}

.star:nth-child(5) {
    top: 0;
    right: 400px;
    left: initial;
    animation-delay: 70.8s;
    animation-duration: 2.5s;
}

.star:nth-child(6) {
    top: 0;
    right: 600px;
    left: initial;
    animation-delay: 38s;
    animation-duration: 3s;
}

.star:nth-child(7) {
    top: 300px;
    right: 0px;
    left: initial;
    animation-delay: 46s;
    animation-duration: 1.75s;
}

.star:nth-child(8) {
    top: 0px;
    right: 700px;
    left: initial;
    animation-delay: 100.4s;
    animation-duration: 1.25s;
}

.star:nth-child(9) {
    top: 0px;
    right: 1000px;
    left: initial;
    animation-delay: 90.75s;
    animation-duration: 2.25s;
}

.star:nth-child(10) {
    top: 0px;
    right: 1000px;
    left: initial;
    animation-delay: 50.75s;
    animation-duration: 2.25s;
}