body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #202020;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* Headings use Mouse Memoirs */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Mouse Memoirs', sans-serif;
    letter-spacing: 1px;
    font-weight: normal;
}

h1 {
    font-size: 55px;
}

h2 {
    font-size: 45px;
}

.container {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 90%;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
}

.email {
    margin-top: 20px;
    display: inline-block;
    color: #0073e6;
    text-decoration: none;
    font-weight: bold;
}

.email:hover {
    text-decoration: underline;
}

.button-yellow {
    font-family: 'Mouse Memoirs', sans-serif;
    border: 1px solid #ffd740;
    text-transform: uppercase;
    font-size: 17px;
    border-radius: 7px;
    font-weight: 500;
    letter-spacing: 2px;
    margin: 20px auto 0;
    display: inline-block;
    padding: 12px 22px;
    text-decoration: none;
    color: #000;
    background-color: #ffd740;
    text-shadow: 1.5px 1.5px 0px #fff;
    transition: all 0.3s ease;
}

/* Hover effect */
.button-yellow:hover {
    background-color: transparent;
    color: #ffd740;
    text-shadow: none;
}