body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    height: 100%;
    color: #ffffff;
}

.landing-page {
    height: 100%;
    background: linear-gradient(to bottom, #4a90e2, #1f3a93);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.content {
    max-width: 800px;
    z-index: 3;
    text-align: center;
}

h1 {
    font-size: 3.5em;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.4em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

button {
    padding: 12px 24px;
    font-size: 1.2em;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
}

button.primary {
    background-color: #ffcc00;
    color: #333333;
    font-weight: bold;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

button.primary:hover {
    background-color: #ffb300;
}

button.secondary {
    background-color: #ffffff;
    color: #4a90e2;
    font-weight: bold;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

button.secondary:hover {
    background-color: #f1f1f1;
}
