@font-face {
    font-family: 'OpenSauceSans';
    src: url('OpenSauceSans.ttf') format('truetype');
}

body {
    font-family: 'OpenSauceSans';
    max-height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden; 
}

body.dark-mode {
    background-color: #121212;
    color: #fff;
}

.container {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

h1 {
    font-size: 42px;
    color: #333;
    margin: 10px;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

body.dark-mode h1, body.dark-mode p {
    color: #fff;
}

p {
    margin: 0;
    padding-top: 0px;
    font-size: 18px;
    color: #666;
}

.buttons {
    margin-top: 20px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    background-color: #0074D9;
    color: #fff;
    border-radius: 5px;
    margin-right: 10px;
}

.button:hover {
    background-color: #0056B3;
}

#dark-mode-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#dark-mode-button:hover {
    background-color: #555;
}

@media screen and (max-width: 600px) {
    .button {
        display: block;
        margin: 10px auto;
    }
}

h1:hover {
    transform: rotate(2deg) scale(1.2);
    background: linear-gradient(to right, #0074D9, #659ecf);
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* shout out to mick */