@font-face {
    font-family: code_mono;
    src: url(../fonts/CutiveMono-Regular.ttf);
}

@font-face {
    font-family: header_font;
    src: url(../fonts/VT323-Regular.ttf);
}

@font-face {
    font-family: name_author;
    src: url(../fonts/SpaceMono-Regular.ttf);
}


:root{
    --primaryColor:#04121C;
    --secondaryColor1: #27BCD0;
    --secondaryColor2:#2A789B;
    --textColor:#B6E7F1;
    --green:#2a9b4a;
    --red: #7511119d;
}

body{
    color:var(--textColor);
}

.button{
    border: 2px solid var(--secondaryColor2);
    border-radius:10px;
    padding:0.5em 1em;
    cursor:pointer;
    background-color:var(--primaryColor);
    color:var(--textColor);
    font-size: 1.5em;
    font-weight: bold;
    width:10em;
}

.button2{
    border:none;
    border-radius:10px;
    padding:0.5em 1em;
    cursor:pointer;
    background-color:var(--red);
    color:var(--textColor);
    font-size: 1.5em;
    font-weight: bold;
    width:10em;
}

.button-medium{
    font-size: 1em;
}
.button:hover,.button2:hover{
   filter:brightness(1.2)
}

.button--secondary{
    background-color: rgba(52, 58, 64, 0.9);
    color: white;
    font-size: 1.5em;
    height: fit-content;
    width: 100%;
    padding:0.5em 1em;
    font-family: 'Montserrat', sans-serif;
    border: 2px solid var(--secondaryColor2);
    text-align: center;
    box-sizing: border-box;
}

.align-text-center{
    text-align: center;
}

