body {
    margin: 0;
    padding: 0;
    background-color: #FFC72C; /* McDonald's yellow */
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #FF0000; /* McDonald's red */
    height: 100vh;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
    text-align: center;
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

h1 {
    font-size: 6rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5); /* Add drop shadow */
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.email-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.email-text {
    font-size: 2rem;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5); /* Add drop shadow */
}

.email-link {
    font-size: 8rem;
    color: #FF0000; /* McDonald's red */
    text-decoration: underline;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add drop shadow */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Media queries for responsive text size */
@media screen and (max-width: 768px) {
    h1 {
        font-size: 5rem;
    }
    
    .email-text, .email-link {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .email-text, .email-link {
        font-size: 1.2rem;
    }
}