@import url('/css/fonts/merriweather/merriweather.css');
html {
    min-height: 100%;
}
body {
    background: radial-gradient(ellipse at bottom,#1b2735 0,#090a0f);
    color: white;

    min-height: 100%;
    margin: 0;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.top-navigation {
    padding: .6rem 0;

    height: 10vh;
    width: calc(80vw - (.6rem * 2));
    margin: 0 auto;

    font-family: 'Merriweather', serif;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-navigation .logo-container {
    width: auto;
    height: 100%;
}

.top-navigation .logo {
    max-width: 100%;
    max-height: 100%;
}

.top-navigation .links-container {
    border: 1px solid white;
    border-radius: 2rem;
    padding: .6rem 1rem;
}

.top-navigation .links-container a {
    color: white;
    text-decoration: none;
    margin: 0 .5rem;
    text-transform: uppercase;
    transition: all .3s;
}

.top-navigation .links-container a:hover {
    color: rgba(255, 255, 255, .7);
    cursor: pointer;
}

.top-navigation .lang-selector {
    height: 50%;
    padding: .5rem;
    background-color: transparent;
    color: white;
    font-family: 'Merriweather', serif;

    border: none;
    border-radius: .5rem;

    transition: all .3s;
}

.top-navigation .lang-selector:hover {
    background-color: rgba(255, 255, 255, .1);
    cursor: pointer;
}

.top-navigation .lang-selector:focus {
    outline: blue;
}

.top-navigation .lang-selector:focus-visible {
    outline: none;
}

.main-container {
    padding: 0.6rem;
    width: 80vw;
    margin: 0 auto;
}

@media only screen and (max-width: 1200px) {
    .top-navigation {
        flex-direction: column;
        gap: .5rem;
        height: auto;
    } 

    .top-navigation .links-container {
        font-size: 0.8rem;
    }

    .top-navigation .logo {
        max-height: 150px;
    }
}