/* Leaflet / Google Fonts imports if not already imported */
body, .container2, .btn {
    font-family: 'Open Sans', sans-serif;
}

body {
    background: linear-gradient(135deg, #f3f7fd 0%, #e9f0fa 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container2 {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
    text-align: center;
    width: 100%;
    max-width: 440px;
    margin: 1.5rem;
    transition: transform 0.3s ease;
}

.container2:hover {
    transform: translateY(-2px);
}

h1 {
    font-family: 'Comfortaa', cursive;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #1d1d1b;
    font-size: 1.6rem;
    line-height: 1.4;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 1.5rem;
    text-decoration: none;
    color: #ffffff;
    border-radius: 0.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.btn i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

.btn1 {
    background-color: #04979d;
}

.btn2 {
    background-color: #7f3943;
}

.btn3 {
    background-color: #f9ba5b;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
    opacity: 0.95;
}

.btn:active {
    transform: translateY(-1px);
}
