body {
    background: url('https://raw.githubusercontent.com/Chrissals/autoboy/main/autoboy-background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: ghostwhite; 
    font-family: 'Courier New', Courier, monospace; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 10px;
    flex-direction: column;
    overflow: hidden;
}

h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 20px;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2rem;
    text-decoration: none;
    color: ghostwhite;
    background-color: #333;
    border: 2px solid #666;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button:hover {
    background-color: #555;
    transform: scale(1.05);
}

.button:active {
    background-color: #777;
}

.footer {
    position:fixed;
    left:0px;
    bottom:0px;
    height:30px;
}
    width:100%;
    font-size: 0.9em;
}
