body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    text-align: center;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    padding-top: 50px;
}

.title {
    font-size: 3em;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

#mainDiv {
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.5em;
    margin: 20px;
    transition: transform 0.3s ease-in-out;
}

#mainDiv:hover {
    transform: scale(1.05);
}

button {
    background: #ff4b2b;
    border: none;
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 30px;
    cursor: pointer;
    position: absolute;
    transition: background 0.3s;
}

button:hover {
    background: #ff416c;
}
