*{
    padding: 0;
    margin: 0;
}

:root{
    --color:#e6dfcf;
}
body{
    width: 100vw;
    height: 100vh;
    background: url(/imagewebsite/image/aimarket.jpg) no-repeat ;
    background-size: 100vw 100vh;
    display: flex;
    /* position: relative; */
    
    
}

nav{
    width: 300px;
    display: flex;
    flex-direction: column;
    background-color: #0B1D51;
    background:url(/imagewebsite/image/7.jpg);
    height: 100vh;
    color: var(--color);
    box-sizing: border-box;
    background-size: 300px 100vh;
    background-repeat: no-repeat;
    box-shadow: 3px 1px 6px white;

}

nav h1{
    color: var(#A1869E);
    text-align: center;
    margin: 50px 20px 40px ;
    
}
nav ul {
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 500px;
    justify-content: space-around;

}
nav ul a{
    color: var(--color);
    text-decoration: none;
    font-size: 20px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-variant: small-caps;
    text-shadow: 0px 3px 8px rgb(0, 0, 0);
    font-weight: bold;

}
nav .signbox{
    display: flex;
    position: absolute;
    right: 0px;
    top: 10px;
}

nav .signbox button{
    padding: 10px 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 18px;
    font-variant: small-caps;
    border-radius: 20px;
    outline: none;
    border: none;
    background-color: #0B1D51;
    color:var(--color) ;
    margin-right: 10px;
    text-shadow: 0px 5px 7px black;
    transition: 0.3s;
    /* border: 100px solid black; */

}
nav .signbox button:hover{
    background-color: #A1869E ;
    transition: 0.3s;
}

.interface{
    width: 550px;
    /* background-color: yellow; */
    display: flex;
    flex-direction: column;
    border: 2px solid white;
    height: 400px;
    text-align: center;
    align-self: center;
    margin-left: 200px;
    margin-right: 200px;
    /* filter: blur(px); */
    backdrop-filter: blur(2px);
    box-sizing: border-box;
    border-radius: 4px ;
    box-shadow: 0px 0px 10px white;
}
.interface h1{
    color: #ffffff;
    margin-top: 10px;
    text-shadow: 3px 3px 5px black;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}

.interface .img{
   margin: 20px;
   height: 250px;
   display: flex;
   /* justify-content: space-around; */
   flex-wrap: wrap;
   overflow: scroll;
   filter: drop-shadow(0px 0px 10px black);
   /* padding: 10px; */
}
.interface .img img{
    width: 100px;
    height: 150px;
    margin: 10px;
    flex-grow: 1;
    border-radius: 3px;
    transition-property: all;
    transition: 0.5s;
}
.interface .img img:hover{
    
    width: 110px;
    height: 160px;
    transition: 0.5s;
}
.interface #more{
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    text-decoration: none;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    text-shadow: 2px 2px 5px black;

}
.interface #more:hover{
   font-size: 23px;

   transition: 0.3s;
}
