@font-face {
    font-family: "Raleway";
    src:
        url("/public/polices/Raleway-ExtraLight.ttf"),
        /* url("/public/polices/Raleway-Light.ttf"),
        url("/public/polices/Raleway-Medium.ttf"); */
}

body {
    position: relative;
    color: white;
    background-color: rgb(31, 31, 31);
    font-family: "Raleway";
}

.noise-font{
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url( "/public/media/font.png" );
    background-repeat: repeat;
    background-size: auto;
    opacity: 0.8;
    z-index: 12000; 
}

button {
    color: rgba(254, 234, 174, 0.7);
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.modal {
    display: none; 
    position: fixed; 
    top: 0; 
    bottom: 0; 
    right: 0; 
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 10001;
}

.modal-content ul {
    line-height: 2;
}

.modal-content {
    position: relative;
    margin: 15vw 20vw; 
    padding: 1vw 1vw;
    height: max-content;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 4px; 
    z-index: 10050;
}

.modal a {
    color: rgba(254, 234, 174, 0.7);
}

.modal h2 {
    color: orange;
}

@media screen and (max-width: 800px) {
    .modal-content {
        margin: 10vw 10vw;
        padding: 5vw 5vw;
    }
}