.copyright {
    background-color: transparent;
    color: white;
    display: flex;
    align-items: center;
    justify-content: right;
}

.footer {
    font-size: 11px;
    letter-spacing: 1px;
    padding: 10px 60px;
    color: white;
    background-color: #272727;
    display: flex;
    height: 50px;
    flex-direction: row;
    position: relative;
    z-index: 2;
    margin-top: 50px;
}

.language-toggle {
    text-transform: capitalize;
    background-color: transparent;
    border: none;
    font-size: small;
    text-transform: uppercase;
    color: white;
    margin: 0;
    letter-spacing: 2px;
    padding: 2px;
    border-bottom: 1px rgba(255, 255, 255, 0) solid;
    transition: border-bottom 0.4s ease-out;
}

.language-toggle.not-selected:hover {
    cursor: pointer;
    color: white;
    border-bottom: 1px white solid;
    transition: border-bottom 0.4s ease-out;
}

.language-toggle.not-selected {
    color: #9e9e9e;
}