* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    height: 100vh;
    background-image: url('img/bliss.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    padding: 2rem;
    max-width: 600px;
    text-align: center;
    direction: rtl;
}

.logo {
    width: 500px;
    height: auto;
    margin: 0 auto 2rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 2rem;
}

.social-icon {
    width: 128px;
    cursor: pointer;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.cta-button {
    background-color: #d4d0c8;
    color: black;
    border-style: outset;
    border-width: 3px;
    border-color: lightgray;
    padding: 1rem;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    width: 100%;
    max-width: 300px;
}

.cta-button:hover {
    border-style: inset;
    border-width: 3px;
    border-color: lightgray;
}

span
{
    font-size: 1em;
    padding: 10px;
    background-color: red;
    color: white;
}

/* Mobile */
@media (max-width: 600px) {
    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 1rem;
        margin: 0 auto 0.5rem;
    }

    .social-icons {
        gap: 2rem;
        margin: 0.5rem;
        align-items: center;
    }

    .social-icon {
        width: 78px;
    }

    .logo {
        width: 100%;
    }

    .container {
        padding: 1.5rem;
    }
}