* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f1; /* Light cream background color */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #333;
}

.container {
    text-align: center;
    padding: 40px;
}

.logo img {
    width: 200px; /* Adjust the logo size */
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #f4a623; /* Golden color matching the whale logo */
    font-weight: 600;
}

.description h2 {
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

.description p {
    font-size: 16px;
    color: #555;
    margin: 10px 0;
}

.email {
    margin-top: 20px;
}

.email a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

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

@media screen and (max-width: 768px) {
    .logo img {
        width: 150px;
    }

    h1 {
        font-size: 36px;
    }

    .description h2 {
        font-size: 20px;
    }

    .description p {
        font-size: 14px;
    }
}