@font-face {
    font-family: "Blinker";
    src: url("fonts/Blinker-Regular.ttf") format("truetype");
}

body {
    font-family: "Blinker", sans-serif;
    margin: 0;
    background-color: #000000;
    overflow: hidden;
    position: relative;
    height: 100vh;
}

html {
    scroll-behavior: smooth;
}

h1 {
    color: ghostwhite;
}

h4 {
    color: ghostwhite;
}

a {
    color: ghostwhite;
}

p {
    color: ghostwhite;
    margin-left: 1%;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    animation: twinkle 2s infinite ease-in-out;
}

@keyframes twinkle {
    0%,
    100% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.2;
    }
}

#muteBtn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    opacity: 0.7;
}
