pre {
    font-size: 11px;
    color: #7c7c7c;

}

body {
    background-color: black;
    overflow: hidden;
    margin: 10px;
    padding: 0;

}

#content {
    width: -webkit-fill-available;
    display: flex;
    height: 100vh;
    margin: auto;
}

a {
    margin: 50px;
    color: #7c7c7c;
    transition: 0.2s ease color;
    font-family: BigBlueTerminal;
    text-decoration: none;
    font-weight: bolder;
}

.box {
    border: 1px dashed #7c7c7c;
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    width: 300px;
    padding: 23px;
    text-align: center;
    margin: auto;
}



a:hover {
    color: white;
    font-weight: bold;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.confirmation-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    text-align: center;
}

.confirmation-box {
    font-family: BigBlueTerminal;
    color: #7c7c7c;
    border: 1px dashed #7c7c7c;
    background: #010101;
    padding: 20px;
    animation: fadeIn 0.3s ease-in-out;
    /* Add fade-in animation to .confirmation-box */
}

.confirmation-buttons {
    font-family: BigBlueTerminal !important;
    margin-top: 10px;
}

.confirmation-buttons button {
    font-family: BigBlueTerminal !important;

    padding: 10px;
    margin: 0 10px;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.confirmation-buttons button {
    border: 1px dashed #7c7c7c;
    background-color: transparent;
    color: #7c7c7c;
}


::selection {
    background-color: rgba(255, 192, 203, 0.379);
    color: white;
}

p {
    font-family: BigBlueTerminal;
    color: #7c7c7c;
    margin: 20px;
}

.pussy {
    width: 17px;
}

@font-face {
    font-family: BigBlueTerminal;
    src: url(BigBlue_Terminal_437TT.TTF);
}