 /* GENERAL */
body {
    margin: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: white;
}

header {
    height: 40px;
    padding: 10px;
    margin: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 5px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 3px 1px rgba(0, 0, 0, 0.199);
    
    h1 {
        font-size: 40px;
         text-shadow: 1px 1px black;
    }
}

h3 {
    font-size: 25px;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: white;
}

footer {
    font-weight: bold;
    text-align: center;
    text-shadow: 1px 1px black;
    height: 40px;
    padding: 10px;
    margin: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 5px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 3px 1px rgba(0, 0, 0, 0.199);
    position: relative;
    top: 28vh;
}

/* CLASS */

.container {
    width: 1024px;
    height: 125vh;
    margin: 0 auto;
    padding: 20px;
    background: url(../images/cody-board-YW5EjYFYjfs-unsplash.jpg) no-repeat fixed;
    background-size: cover;
}

/* ASIDE_Menu */

ul li{
    list-style: none;
}

.bloc_menu{
    width: 20%;
}

.menu {
    width: 15px;
    margin: 30px;
    padding: 10px;
    position: fixed;
    top: 60px;
    
    button {
        font-weight: bold;
        width: 100px;
        margin-top: 10px;
        height: 35px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        backdrop-filter: blur(2px);
        border: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: 2px 2px rgba(0, 0, 0, 0.459);
        transition: transform 0.2s ease-in-out;
        }

        button:hover {
        transform: translateY(5px) translateX(2px);
        backdrop-filter: blur(10px);
        text-shadow: 1px 1px black;
    }
}


/* SECTION content */

.contents {
    width: 400px;
    padding: 20px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.048);
    backdrop-filter: blur(2px);
    border-radius: 5px;
    box-shadow: 3px 1px rgba(0, 0, 0, 0.199);
    position: relative;
    top: 100px;
    transition: transform 0.5s ease-in-out;
    
}

.contents:hover {
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px black;
    transform: scale(1.1);
}
