@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;
}

body{
    background: linear-gradient(90deg, #000000, rgb(31, 9, 28), rgb(31, 9, 28),rgb(83, 23, 75), rgb(31, 9, 28), rgb(31, 9, 28), #000000);
    margin: 0;
}

main{
    padding: 5% 0 10% 0;
}

header{
    background: linear-gradient(0deg,rgb(0, 0, 0),rgb(24, 6, 22), rgb(83, 23, 75), rgb(30, 8, 27));
    box-shadow: 0 0 50px 120px #000000;
    background-size: 100%;
    padding: 3% 0 0px 0px;
}

h1{
    user-select: text;
    text-shadow: 0 0 10px #ffffff;
    font-size: 82px;
    font-weight: 400;
}

h2{
    user-select: text;
    text-shadow: 0 0 10px #ffffff;
    font-size: 26px;
    font-weight: lighter;
    padding: 0 0 25% 0;
}

footer{
    padding: 1px;
    background-color: rgb(83, 23, 75);
    box-shadow: inset 0 0 50px 10px #000000;
}

footer p{
    user-select: text;
    font-size: 24px;
}

.doll{
    text-align: right;
}

.carousel{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.carousel1{
    width: 23%;
    max-width: 1000px;
    margin: 0% 4% 0% 4%;
    transition: 0.2s;
}

.carousel1 p{
    background-color: #000000;
    margin: 0;
    padding: 1%;
    width: 100%;
    user-select: text;
}

.img-carousel{
    border: solid #000000;
    width: 100%;
}

.carousel1:hover{
    width: 24%;
    transition: 0.6s;
    text-shadow: 0 0 10px #ff00ff;
    background: linear-gradient(#800080,transparent, transparent, #000000);
    padding: 0.2%;
}

.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{
    box-shadow: 0 0 55px 50px #000000;
    width: 95%;
}

.line:first-of-type,.line:last-of-type{
    box-shadow: 0 0 190px 120px #000000;
    margin: 0 auto 0 auto;
}

::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 {
    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 (max-width: 1000px){
    header{
        background-size: 120%;
    }
    .img-carousel{
        min-width: 50%;
    }
    .carousel1 p{
        font-size: 75%;
    }
    .image-logo{
        width: 35px;
        margin-top: 1%;
        margin-left: 1%;
    }
    span{
        width: 6%;
        margin-right: -1%;
    }
}

@media screen and (min-width: 950px){
    .carousel1 p{
        font-size: 26px;
    }
}

@media screen and (min-width: 0px) and (max-width: 500px){
    .line{
        box-shadow: none;
    }
    .carousel1 p{
        font-size: 7px;
    }
    h1{
        font-size: 50px;
    }
    h2{
        font-size: 15px;
    }
    body{
        background: linear-gradient(90deg, rgb(83, 23, 75), rgb(31, 9, 28));
    }
    
}

@media screen and (max-width: 1250px){
    body{
        background: linear-gradient(90deg, #000000 rgb(31, 9, 28),rgb(83, 23, 75), rgb(31, 9, 28), #000000);
    }
    footer p{
        font-size: 70%;
    }
    .line{
        box-shadow: 0 0 15px 15px #000000;
    }
}