body {
    background-color: #333;
    color: #fff;
    font-family: 'Caveat', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

h1 {
    margin-bottom: 20px;
    font-size: 2rem;
}

.caveat-custom {
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

a button {
 background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

a button:hover {
    background-color: #0056b3;
}

img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}
