@font-face {
    font-family: 'Terminus';
    src: url('ttf/TerminusTTFWindows.ttf') format('truetype');
}

@font-face {
    font-family: 'Cubic';
    src: url('ttf/cubic.ttf') format('truetype');
}

body {
    background-color: #f0f0f0;
    font-family: 'Terminus', monospace;
    margin: 0;
    padding: 0;
    text-align: center;
}

.name {
    font-family: 'Cubic', sans-serif;
    font-size: 3em;
    font-weight: bold;
    margin: 2vw 0 0 0;
    padding: 0;
}

.img {
    display: block;
    margin: 0 auto;
    width: 25vw;
}

.subtext {
    font-size: 0.8em;
    margin: 0;
    padding: 0;
}

.links {
    font-size: 1em;
    margin: 1vw 0 0 0;
    padding: 0;
    color: #000;
}

.links a {
    text-decoration: none;
    color: #000;
    padding: 0.5em;
    margin: 0.5em;
}

.footer {
    /* stick at bottom of page */
    display: flex;
    justify-content: center;    
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
    font-size: 0.8em;
    padding: 0.5em;
    margin: 0;
}

.modal {
    display: none; 
    position: fixed;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 200px;
    background-color: #c0c0c0;
    border: 2px solid #000000; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); 
    border-radius: 2px;
    padding: 0;
}


.modal-content {
    background-color: #FFF; 
    padding: 0;
    border: 2px solid #000000; 
    height: 100%;
    width: 100%;
    position: relative;
}


.modal-content::before {
    content: "Contacts";
    background-color: #000000; 
    color: white;
    font-weight: bold;
    padding: 3px;
    display: block;
    font-family: 'Terminus', monospace;
    font-size: 14px;
    text-transform: uppercase;
    border-bottom: 2px solid #000000;
}


.close-btn {
    position: absolute;
    top: 2px;
    right: 5px;
    background-color: #000000; 
    padding: 0 6px;
    cursor: pointer;
    font-size: 16px;
    color: white;
    font-family: 'Terminus', monospace;
    font-weight: bold;
    border-radius: 3px;
}

.close-btn:hover {
    background-color: #000000;
    color: white;
}

.modal-content h2,
.modal-content p {
    font-family: 'Terminus', monospace;
    font-size: 12px;
    color: black;
    margin: 15px;
}
