/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1b1e;
    color: #fff;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    color: #fff;
    background-color: #111; /* Arrière-plan sombre pour l'en-tête */
}

.left-header {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px #9d00ff);
}

.cloud-text {
    font-size: 1.5rem;
    margin-right: 10px;
}

.beta-text {
    font-size: 1rem;
    font-family: fantasy;
    color: #ff5733;
}

.right-header {
    display: flex;
    align-items: center;
}

.search {
    padding: 10px;
    font-size: 1rem;
    border: none;
    outline: none;
    background-color: #1a1b1e;
    color: #fff;
    border-bottom: 2px solid #9d00ff;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.search::placeholder {
    color: #9d00ff;
}

.search:focus {
    border-bottom: 2px solid #ff00ff;
}

.icon {
    height: 30px;
    margin-left: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.icon:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px #9d00ff);
}

/* Main Content Styles */
main {
    padding: 20px;
}

.about-info h1 {
    font-size: 2.5rem;
    text-align: center;
    color: #9d00ff;
}

.about-info h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #ff5733;
    margin-top: 20px;
}

.about-info p {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Footer Styles */
footer {
    background: #333;
    padding: 20px;
    text-align: center;
    color: white;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
