body {
    background-image: url(./7542b4f6-739a-415c-b94e-5fb11c8c1814.png);
    height: 100vh;
    background-size: cover;
    /* Scale to fill the screen while keeping aspect ratio */
    background-repeat: no-repeat;
    /* Prevent tiling */
    background-position: center;
    /* Center the image */
    overflow: hidden;
    margin: 0auto;
    font-family: 'Satoshi', sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
}

.links a {
    color: #001f54;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 400;
    font-size: 18px;
}

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

.buttons {
    display: flex;
    gap: 10px;
    padding-right: 30px;
}

.button1 {
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    font-weight: 600;
    width: auto;
    padding: 18px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    color: #001f54;
    border: none;
    box-shadow: 0 30px 30px rgba(0, 0, 0, 0.1);
}

.button1:hover {

    background-color: rgba(205, 202, 202, 0.362);
}

.button2 {
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    font-weight: 600;
    width: auto;
    padding: 18px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    text-decoration: none;
    white-space: nowrap;
    color: #001f54;
    border: none;
    box-shadow: 0 30px 30px rgba(0, 0, 0, 0.1);
    align-items: center;
    gap: 5px;
}

.button2:hover {

    background-color: rgba(205, 202, 202, 0.362);
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    margin-top: 50px;

}

main div {
    text-align: center;
    color: white;
    /* max-width: 600px; */
    background: linear-gradient(135deg, #00a3ff, #08d);

    width: 600px;
    border-radius: 2rem;
    padding: 10px, 20px;
    align-items: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    height: 300px;

}

h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, .1);
}

p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, .1);
}

.button3 {
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    font-weight: 600;
    width: auto;
    padding: 18px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    color: #001f54;
    border: none;
    box-shadow: 0 30px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 900px) {
    .links {
        display: none;
    }
}

@media (max-width: 500px) {
    main div {
        width: 90%;
        padding: 20px;
    }

    h2 {
        font-size: 28px;
        font-weight: 900;
    }

    .button1,
    .button2 {
        padding: 12px 10px;
        font-size: 12px;
    }
}