body {
    font-family: "Gill Sans", sans-serif;
    background-color: #000000;
}

h1 {
    margin: 0;
    padding: 0;
    font-size: 2rem;
}

h2 {
    margin: 0;
    padding: 5px 0;
    font-size: 1rem;
}

h3{
    color:#0460ff;
    font-size: 1rem;
}

a img{
    padding: 0 4px;
    height: 32px;
    width: 32px;
}

#page-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
}
.banner {
    width: 320px;
    height: 320px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-content: flex-end;
    text-align: center;
    position: relative;
}

.banner .banner-text {
    width: 100%;
    padding: 8px 0;
    background-color: rgba(112, 104, 174, 0.429);
    color: whitesmoke;
    position: absolute;
    bottom: 0;
}

.links {
    width: 100%;
    max-width: 320px;
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.links a {
    text-decoration: none;
    color: #1606f7;
    background-color: rgb(177, 193, 247);
    border: 2px solid #0e019b;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    margin: 6px 0;
    padding: 5px 0;
    transition: background-color 0.3s, color 0.3s;
}

.links a:hover {
    background-color: #111211;
    color: white;
}

.footer {
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
}

.language-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    cursor: pointer;
}

.language-switcher a {
    margin: 8px 8px;
}

.language-switcher a img{
    height: 18px;
    width: 18px;
    border-radius: 50%;
}

.copyright{
    margin-top: 6px;
    font-size: 0.7rem;
}

