body {
    background-color: #242424;
    color: #F2F2F2;
    font-family: Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    flex-direction: column;
}

nav {
    margin-top: -800px;
    position: fixed;
}


main {
    background-color: #BB4545;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 100%;
    text-align: center;
}

h1, h2 {
    color: #F2F2F2;
    margin-bottom: 15px;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.button {
    background-color: #BB4545;
    color: #F2F2F2;
    border: 1px solid #aaaaaa;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.3s;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 20px;
    display: inline-block;
}

.button:hover {
    background-color: #A6662E;
    transform: translateY(-3px);
}

@media (max-width: 700px) {
    main {
        padding: 20px;
        width: 90%;
    }
}
