
.image-container {
    display: flex;
    justify-content: center;
    align-self: center;
    position: relative;
}

h1 {
    color: #000;
    font-size: 30px;
    margin-bottom: 10px;
}

#image-container {
    position: relative;
    padding: 50px;
}


#coordinates {
    position: absolute;
    bottom: 30px; 
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0);
    padding: 0px;
    font-size: 20px;
}

#left {
    position: absolute;
    bottom: 950px; 
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0);
    padding: 0px;
    font-size: 20px;
}


p {
    color: #666; 
    font-size: 18px;
    margin-bottom: 0;
    line-height: 1.6; 
}

h1 {
    font-size: 40px;
    color: #ffffff; 
    text-align: center;
}

h2 {
    font-size: 30px;
    color: #666;
    text-align: center;
}


nav ul {
    text-align: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #f9f9f9;
    border-radius: 50px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.9);
}

nav li {
    display: inline-block;
}

nav li a {
    display: block;
    color: #333;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav li a:hover {
    background-color: #f4f4f4;
    transform: scale(1.05);
}

nav ul, nav li, nav li a {
    text-align: center;
}

section {
    padding: 50px;
    margin-bottom: 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1); 
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5); 
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px); 
}

.image-container img {
    height: 900px;
    object-fit: cover;
    border-radius: 15px;
    user-select: none; 
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none; 
}


footer {
    background-color: #333;
    color: #f9f9f9;
    text-align: center;
    padding: 20px;
}

footer p {
    margin: 0;
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-image: url(Elements/background.jpg);
    background-size: cover; 
    background-position: center; 
    background-attachment: fixed; 
}

header {
    background-color: rgb(255, 255, 255); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    color: #f9f9f9; 
    padding: 20px;
    text-align: center;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    top: 0;
    z-index: 1000; 
    height: 45px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); 
}

header h1 {
    color: rgb(0, 0, 0);
    margin: 0; 
    font-size: 3rem; 
    font-family: Arial, sans-serif; 
    font-weight: 0; 
    letter-spacing: 0px; 
}

a {
    color: #666;
    text-decoration: none;
    text-align: center;
}

a:hover {
    color: #333;
}


.button-container {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 24px; 
    padding: 20px;
    background-color: rgb(255, 255, 255); 
    border-radius: 15px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
    min-height: 10vh; 
    box-sizing: border-box; 
}


.square-button {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    width: 200px; 
    height: 200px; 
    background-color: rgb(239, 248, 255); 
    color: rgba(0, 0, 0, 0.8); 
    text-decoration: none; 
    font-size: 2rem; 
    font-family: Arial, sans-serif; 
    text-align: center;
    border-radius: 10px; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    transition: transform 0.2s, background-color 0.2s, color 0.2s; 
}

.square-button img {
    width: 50px; 
    height: 50px; 
    margin-bottom: 10px; 
}

.square-button:hover {
    background-color: rgba(178, 214, 255, 0.8); 
    color: rgba(0, 0, 0, 0.8); 
    transform: scale(1.05); 
}

.square-button:hover img {
    transform: scale(1.1); 
    transition: transform 0.2s; 
}


.square-button span[data-translate], 
.square-button span, 
.square-button p {
    width: 95%;
    max-width: 95%;
    display: block;
    word-break: break-word;
    text-align: center;
    margin: 0 auto;
    overflow-wrap: break-word;
}


@media screen and (max-width: 1024px) {
    .button-container {
        gap: 40px; 
    }

    .square-button {
        width: 45%; 
        height: 400px; 
        font-size: 3.5rem; 
    }

    .square-button img {
        width: 100px; 
        height: 100px;
    }

    
    p {
        padding: 0 15px; 
    }
}
