@font-face {
    font-family: 'Terminal', monospace;
    src: url(assets\terminal-grotesque.ttf) format('truetype');
}

html, body {
    -ms-overflow-style: none;
    scrollbar-width: none;
    
}

body {
    background-color: #ffffff;
    color: #434343;
    font-family: 'Terminal', monospace;
    margin: 0;
    padding: 20px;    
}

p {
    padding: 0;
    margin: 0;
}

header {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

h1 {
    color: #0000ff;
    font-family: 'Times New Roman', serif;
    font-weight: 500;
    text-decoration: underline;
    text-align: center;
}

#randomImage {
    width: 250px;
    height: auto;
}

#PopUp {
    width: 300px;
    height: auto;
}

mark {
    background-color: #06fc07;
    color: #434343;
}

header {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#footer {
    padding-top: 30px;
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #434343;
}

.cursor {
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}