@font-face {
    font-family: perfect;
    src: url(perfect.ttf)
}

@font-face {
    font-family: mario;
    src: url(mario.otf)
}

::-webkit-scrollbar {
    display: none;
}

* {
    font-family: "perfect", sans-serif;
    font-size: 18px;
    text-decoration: none;
}

body {
    width: 100%;
    height: 100%;
    background-color: rgb(20, 19, 20);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto
}

hr {
    width: 80%;
    opacity: 0.1;
    border: 1px solid rgb(255, 255, 255);
}

.container {
    position: absolute;
    padding: 10px;
    width: 400px;
    height: 200px;
    text-align: center;
    color: white;
    top: 50%;
    transform: translateY(-50%);
}

#flexboxcontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 19, 20, 0.9);
    color: white;
    z-index: 10;
    flex-direction: column;
    text-align: center;
    cursor: pointer;
}

.clicktocontinuecontainer p {
    margin: 0;
    font-size: 16px;
}

.center {
    display: inline-block;
    color: #fff;
    text-shadow: 0 0 30px #73648A;
}

#audio-visualizer {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 150px;
    z-index: 5;
    opacity: 0.7;
}

#hiddencontainer {
    display: flex;
    flex-direction: column;
    text-align: center;
    color: white;
    top: 45%;
    transform: translateY(-50%);
    opacity: 0; 
    transition: opacity 3s ease-in-out;
}

canvas {
    width: 100%;
    height: 100%;
}

.flickertext {
    --rand: .0;
    margin-bottom: -5px;
    animation: flicker 1s infinite;
    font-size:36px;
    font-family: "mario", sans-serif;
    text-shadow: 0 0 50px #6f6085;
    letter-spacing: 4px;
    -webkit-text-stroke: 1px;
    -webkit-text-stroke-color: #73648A;
    color: #A393BF;
    margin: auto;
}
@keyframes flicker {
    0% { opacity: 0.8; }
    100% { opacity: 0.9; }
}


.accent {
    color: #A393BF;
}

#desc {
    color: gray;
    margin-top: -66px;
    margin-bottom: -5px;
    font-size: 16px;
    text-shadow: 0 0 30px #73648A;
    opacity: 1;
}
#socials {
    text-decoration: none;
}
#socials svg {
    width: 25px;
    height: 25px;
    text-shadow: 0 0 20px #73648A;
    color: rgb(85, 85, 85);
    text-decoration: none;
    transition: all 0.3s ease;
}

#socials svg:hover {
    color: #73648A;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in, transform 1s ease-in;
}