@import url('https://fonts.googleapis.com/css2?family=Lora:ital@1&display=swap');

*{
    font-family: 'Lora', serif;
    text-align: center;
    color: #ffffff;
    box-sizing: border-box;
    user-select: none;
}

html{
    background: linear-gradient(140deg, #000000, rgb(83, 23, 75), #000000, #000000, #000000, #000000, #361942, #ad4dd3, #361942, #000000, #000000, #000000, #000000, rgb(83, 23, 75), #000000);
    padding: 5% 0 4% 0;
}

body{
    margin: 0;
}

.custom-border{
    box-shadow: inset 0 0 2px 2px #000000;
    background-color: #ffffff;
    margin: 1.5% 6% 6% 6%;
    padding: 8px 8px 8px 8px;
    border-radius: 8px;
}

.img-menu{
    background: #67317d;
    box-shadow: 0 0 2px 2px #000000;
    border-radius: 8px;
}
.img-menu img:first-child{
    width: 30%;
    margin: 2% 0 1.5% 0;
}

.img-menu img{
    border-radius:5px;
    margin:2%;
    margin-bottom:3%;
    max-width: 28%;
}

.image-logo{
    position:fixed;
    top:10px;
    left:0px;
    margin-left:10px;
    width: 50px;
    border-radius:20%;
    transition:0.3s;
}

.image-logo:hover{
    box-shadow:0 0 30px 0 #8b198b;
    transition:0.3s;
}

.line{
    border-radius: 2px;
    border: 2px solid #ffffff;
    background-color:#ffffff;
    margin: auto;
    max-width: 97%;
}

::selection{
    text-shadow: 0 0 15px #e9b1e9;
    background: #85647c;
}
::-webkit-scrollbar{
    width:10px;
}
::-webkit-scrollbar-track{
    background:#ffffff;
}
::-webkit-scrollbar-thumb{
    background:#000000;
    border:1px solid #484848;
    border-radius:10px;
}
::-webkit-scrollbar-thumb:hover{
    background:#232323;
}
::-webkit-scrollbar-thumb:active{
    background:#343434;
}

span{
    cursor: pointer;
    font-size: 30px;
    position:fixed;
    right: 15px;
    top: 10px;
    margin-right: 1%;
}

.sidenav {
    user-select: text;
    border:inset 1px #ffffff;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: #000000;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
}
  
.sidenav a {
    margin: 12px 35px 8px 45px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}
  
.sidenav a:hover {
    color: #f1f1f1;
    text-shadow:0 0 10px #ffffff;
    cursor: pointer;
}
  
.sidenav .closebtn {
    position: absolute;
    padding: 0 8px 0 8px;
    margin: 5px 35px 8px 45px;
    top: -1px;
    right: -5px;
    font-size: 36px;
}
.sidenav .closebtn:hover{
    background-color:#ff0000;
}
  
@media screen and (max-height: 450px) {
    .sidenav {padding-top: 5%;}
    .sidenav a {font-size: 18px;}
}

@media screen and (min-width: 0) and (max-width: 700px) {
    .img-menu img:first-child{
        max-width: 45%;
        margin: 1% 0 2%;
        border: none;
    }
    .img-menu img{
        min-width: 200px;
        max-width: 60%;
        margin: 0;
        border: solid #562968;
        border-width: 1%;
    }
    .line{
        margin: 3% 5% 4% 5%;
    }
}