@import url("https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400;700&display=swap");

body {
    height: 100vh;
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: black;
    color: #fafafa;
    font-family: "Pixelify Sans", Monospace;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes shooting-star {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(100vw) translateY(100vh);
        opacity: 0;
    }
}

.shooting-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: white;
    box-shadow: 0 0 10px 10px white;
    border-radius: 50%;
    animation: shooting-star 1.5s ease-out forwards;
}

.star {
    height: 5px;
    width: 5px;
    background-color: rgb(255, 255, 255);
    border-radius: 25px;
    position: absolute;
}

#webworks-title {
    font-size: 100px;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

#webworks-title:hover {
    transform: scale(1.1);
    text-shadow: 0px 0px 10px white;
}

#noflex {
    display: block;
}

#page-1 {
    height: 99vh;
    width: 100%;
    border-bottom: 3px solid rgb(255, 255, 255);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}