@font-face {
    font-family: 'Futura';
    src: url(../fonts/futura\ medium\ condensed\ bt.ttf);
}  
@font-face {
font-family: 'Futura Italic';
    src: url(../fonts/Futura\ Medium\ Italic\ font.ttf);
}


body {
    color: black;
    background: #fff;
    font-family: 'Futura', Arial, Helvetica, sans-serif;
    letter-spacing: 0.3em;
    height: 100%;
}

a {
    cursor: pointer;
}

/*LINGUAS*/

.lang-btn{
    position: absolute;
    right: 0;
    top: 0;
    margin-right: 10px;
}
.lang-btn img {
    width: 30px;
    cursor: pointer;
}


.title {
    font-weight: bold;
    font-size: xx-large;
    text-align: center;
    margin-top: 40px;
    letter-spacing: 0.075em;
}

p { 
    text-align: center;
    margin-bottom: 20px;
    text-transform:uppercase;
    font-weight: 100;
    word-spacing: 10px;
    letter-spacing: 0.075em;
}

header {
   font-weight: bold;
   text-align: center;
   word-spacing: 5px;
   color: white;
}

/*FOOTER*/

footer {
    font-weight: bold;

    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.075em;

    width: 100%;
    color: black;  
}

.footer-index {
    position: fixed;
    bottom: 0px;
}

/*NAVIGATION*/

nav ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    align-items: center;
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

nav li {
    min-height: 50px;

}

nav li img {
    height: 50px;
    padding-top: 10px;
}

nav a {
    height: 100%;
    width: 300px;
    margin-bottom: 50px;

    padding: 0 30px;
    display: flex;
    align-items: center;
    color: black;
}


/*SIDEBAR*/


.sidebar{
    position: fixed;
    top:0;
    left: -390px;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.108);
    backdrop-filter: blur(10px);
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: left 0.3s ease;
}

.sidebar.active {
    left: 0;
}

.sidebar li {
    width: 100%;
}

.sidebar a {
    width: 100%;
}


@media(max-width: 430px){
    .sidebar{
        width: 100%;
    }
}
