/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
   background-size: cover;
   background-image: linear-gradient(180deg, rgb(79, 134, 255), rgb(252, 98, 98));
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    color: #333;
    text-align: center;
}

header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #3658c7;
  
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo-container img {
    width: 150px;
    height: auto;
}

.welcome-message {
    font-size: 1.5em;
    margin: 10px 0;
    color: white;
}

.language-selector button {
    background-color: #5246fe; /* Changed button color to coral */
    border: solid blue;
    color: white;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.3em;
    transition: background-color 0.3s ease;
}

.language-selector button:hover {
    background-color: #ff6347; /* Darker shade of coral on hover */
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-section {
    margin: 30px 0;
}

.download-section img {
    width: 300px;
    height: auto;
    transition: transform 0.3s ease;
}

.download-section img:hover {
    transform: scale(1.05);
}

.selection-section {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background-color: rgba(218, 245, 193, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: solid green;
}

.select-box {
    margin: 10px 0;
    font-weight: 800;
}

.label-desc {
    font-size: 1.2em;
    color: #029f24;
}

.select {
    height: 40px;
    border-radius: 8px;
    border: 2px solid #ec1212;
    font-size: 90%;
    width: 200px;
    outline: none;
    transition: border-color 0.3s ease;
    
}

.select:focus {
    border-color: #6e8efb;
}

.home {
    padding: 12px 24px;
    background-color: #028327;
    color: white;
    border: solid rgb(2, 94, 2);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2em;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.home:hover {
    background-color: #8c1780;
    transform: translateY(-2px);
}

footer {
    width: 100%;
    text-align: center;
    background-color: #333;
    color: white;
    padding: 10px 0;
    position: relative;
    bottom: 0;
}
