@import url('https://fonts.googleapis.com/css2?family=Courier+Prime:wght@400;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Courier Prime', serif;
    background-color: #cfcfcf;
    color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: top;
    min-height: 100dvh;
    padding: 5vh;
}

.container {
    text-align: left;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

p {
    color: #f0f0f0;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    transition: color 0.3s, text-shadow 0.3s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);

}

.links a {
    color: #f0f0f0;
    text-decoration: none;
    #margin: 0 1.5rem;
    font-size: 1.5rem;
    transition: color 0.3s, text-shadow 0.3s;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.links a:hover {
    color: #101010;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}



