body {
    font-family: Trebuchet MS, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background-color: #141414;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

header img {
    max-width: 65vw;
    max-height: 10vh;
    height: auto;
}

main {
    text-align: center;
    max-width: 70vw;
}

h1, p {
    color: #ffffff;
    margin: 15px 0;
}

a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    color: #d83131;
    text-decoration: none;
    border: 1px solid #d83131;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
}

a:hover {
    background: #d83131;
    color: #ffffff;
}
