/* 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);
}

/* CLASS */

.container {
    width: 1024px;
    height: 305vh;
    margin: 0 auto;
    padding: 20px;
    background: url(../images/pexels-gizem-gokce-1072613075-35073911.jpg) no-repeat fixed;
    background-size: cover;
    background-position-y: -350px ;
}

/* ASIDE_Menu */

.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;
}
}

ul li{
    list-style: none;
   
}

/* SECTION content */


.content {
    width: 600px;
    padding: 20px;
    margin: 20px auto;
    background: rgba(255, 255, 255, 0.048);
    backdrop-filter: blur(5px);
    border-radius: 5px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    box-shadow: 3px 1px rgba(0, 0, 0, 0.199);
    transition: transform 0.5s ease-in-out ;
}

.content:hover {

    transform: scale(1.1) ;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px black;


/* Q&A */
    .A {
    color: rgb(253, 191, 97);
    }

    .Q {
        color: rgb(140, 140, 255);
    }
}



