body {
    font-family: "Comfortaa", sans-serif;
    font-size: 2em;
    background-color: #03fcca;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.titlehr {
    width: 80%;
    height: 5px;
    background: black;
    border-radius: 5px;
    margin: 20px 0;
    border-color: #000;
}
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #02d495;
    border-radius: 50px;
    border: 2px solid #000;
    font-size: 1.4em;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}
.button:hover {
    background-color: #016144;
    transform: translateY(-2px);
}

#lang, #darkmode, #github, #googledrive {
    cursor: pointer;
    font-size: 2em;
    color:#333;
    transition: 0.25s;
}

#lang:hover, #darkmode:hover, #github:hover, #googledrive:hover {
    color:#222;
}

.icon-container {
    display: flex;
    justify-content: center;
    gap: 50px;
}

/* Dark mode styles */
body.dark-mode {
    background-color: #333;
    color: #03fcca;
}

.button.dark-mode {
    background-color: #016144;
    color: #000;
}

.button.dark-mode:hover {
    background-color: #02d495;
}

#lang.dark-mode, #darkmode.dark-mode, #github.dark-mode, #googledrive.dark-mode {
    cursor: pointer;
    font-size: 2em;
    color: #03fcca;
    transition: 0.25s;
}

#lang.dark-mode:hover, #darkmode.dark-mode:hover, #github.dark-mode:hover, #googledrive.dark-mode:hover {
    color: #02d495;
}

.icon-container.dark-mode {
    display: flex;
    justify-content: center;
    gap: 50px;
    color: #03fcca;
}