@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    font-family: "Roboto Mono", monospace;
}
body {
    background-color: rgb(17, 17, 17);
    overflow: hidden;
}

#penis {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; /* or any height you want */
}

#count {
    color: rgba(128, 128, 128, 0.521);
    font-size: 20px;
    font-weight: 400;
}

.film-grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../imgs/static.gif'); /* Path to your film grain texture */
    background-repeat: repeat;
    background-size: 70vw;
    animation: fadeIn 2s ease-out; /* Animation */
    pointer-events: none;
    opacity: 0.1; /* Adjust opacity to taste */
    mix-blend-mode: add; /* Blend mode */
    z-index: 2;
}

.download {
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    padding: 12px 30px;
    background-color: rgba(165, 42, 42, 0.534);
    box-shadow: 0px 0px 20px rgba(165, 42, 42, 0.534);
    color: rgba(128, 128, 128, 0.521);
    transition-duration: .3s;
}

.download:hover {

    box-shadow: 0px 0px 40px rgba(165, 42, 42, 0.8);
}
.vig {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../imgs/vig.png'); /* Path to your film grain texture */
    background-size:100% 100%;
    animation: fadeInVig 2s ease-out; /* Animation */
    pointer-events: none;
    opacity: 0.6; /* Adjust opacity to taste */
    z-index: 3;
}

.fadeout {
    animation: fadeOut 2s ease-in; /* Animation */
}

@keyframes fadeInVig {
    from {
        opacity: .7;
        
    }
    to {
        opacity: 0.6; /* Adjust opacity to taste */
    }
}

#Input {
    background-color: rgba(0, 0, 0, 0);
    border: 5px solid rgba(128, 128, 128, 0.521);
    color: rgba(128, 128, 128, 0.521);
    box-shadow: 0px 0px 20px rgba(128, 128, 128, 0.521), 0px 0px 20px inset rgba(128, 128, 128, 0.521);
    font-size: 20px;
    padding: 10px;
    
}
input:focus {
    outline: none;
}

@keyframes fadeIn {
    from {
        filter: blur(4px);
        opacity: 1;
        
    }
    to {
        opacity: 0.1; /* Adjust opacity to taste */
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        background-color: rgb(51, 51, 51);
    }
    to {
        filter: blur(10px);
        opacity: 0; /* Adjust opacity to taste */
    }
}