/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Full screen layout */
body, html {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    background-color: #0A1B2A;
    color: #fff;

    font-family: "Josefin Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

/* Container */
.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
}

/* Left section */
.text-section {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 5em;
}

.text-section h1 {
    
    font-size: 1.5em;
    font-weight: 500;
    margin-bottom: 1em;
    opacity: 0.8;

}
.text-section h1 span{
    color: #F4A261;
}

.text-section .links {
    display: flex;
    flex-direction: column;
    gap: 2em;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto;
    width: 100%;

    
}

.text-section .links a {
    color: #fff;
    opacity: 0.7;
    font-size: 2em;
    text-decoration: none;
    font-weight: normal;
    width: fit-content;
}

@media (max-width: 768px) {
    .image-section {
        display: none; /* Hide the image section on small screens */
    }

    .text-section {
        width: 100%; /* Adjust text-section to take full width */
        text-align: center; /* Center align the text for better layout */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 5em;
    }

    .text-section h1 {
        font-size: 1.2em; /* Adjust heading size for smaller screens */
        max-width: 400px;
    }

    .text-section .links a {
        font-size: 1.5em; /* Adjust link font size for better usability */
    }

    .text-section .links {
        width: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }
}







/* another */
