body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensures body takes at least the full height of the viewport */
    background-color: #8DA47D;
    font-family: 'Arial', sans-serif;
    color: #000;
}

.container {
    text-align: center;
    flex: 1; /* Makes the container take up the remaining space */
}


.choose {
    text-decoration: none;
    font-weight: bold;
    color: #000;
    margin-bottom: 30px; /* Added margin for better spacing */
    margin-top: 50px;
}
.container h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #000;
    margin-bottom: 1px;
}
.container h3{
    text-decoration: none;
    color: #000;
    text-align: center;
    margin-top: 1px;
    padding-bottom: 5px;
}
.logo {
    padding-left: 25px;
    padding-top: 25px;
}
@font-face {
    font-family: 'Ko Rubbama';
    src :url('fonts/alfont_com_KORubbama-Black.ttf') format('truetype');

}
.logo img {
    width: 150px;
   
}

.language-switcher {
    display: flex;
    justify-content: center;
    gap: 80px; /* Increased gap for better spacing */
    margin-bottom: 10px; /* Adjusted margin for better balance */
    margin-top: 40px;
}

.language-switcher a {
    text-decoration: none;
    font-size: 2em;
    font-weight: bold;
    color: #000;
    transition: color 0.3s ease;
    text-align: center; /* Ensure text is centered */
}

.language-switcher a:hover {
    color: #555;
}

.footer {
    background-color: #8DA47D;
    padding: 20px; /* Adjusted padding */
    text-align: center;
    width: 97.8%; /* Ensures footer takes up the full width */
    position: fixed; /* Makes the footer fixed at the bottom */
    bottom: 0; /* Positions the footer at the bottom of the viewport */
    flex-shrink: 0; /* Ensures footer doesn’t shrink on smaller devices */
    display: flex;
    justify-content: space-between; /* Space between left-aligned icons and centered text */
    align-items: center; /* Vertically center content */
    
}

.footer .social-icons {
    display: flex;
    align-items: center;
}


.footer a img {
    width: 40px; /* Increased icon size */
    height: 40px; /* Increased icon size */
    transition: transform 0.3s ease;
    margin-right: 10px; /* Spacing between icon and text */
    text-align: left;
}
.footer a img:hover {
    transform: scale(1.1);
}

.footer .copyright {
    font-size: 0.7em;
    color: #ccc;
}
/* Remove tap highlight on mobile */
a {
    -webkit-tap-highlight-color: transparent;  /* For Webkit browsers (Safari, Chrome) */
}

/* Optional: Ensure no outline or shadow appears */
a:active, a:focus {
    outline: none;          /* Removes outline */
    box-shadow: none;       /* Removes any shadow */
}