* {
    cursor: url("../arrow.png"), auto;
}
html{
    height: 100vh;
    overflow:hidden;
}
body{
    margin:0;
    display: flex;
    background: white;
    font-size: 1.3rem;
}
aside{
    background: white;
    height: 100svh;
    position: relative;
    padding-right: 7px;
    box-shadow:inset 0px 0px 4px black;
    border-right: black 1px groove;
    transition: transform 200ms;
    width: fit-content;
}
input{
    position: absolute;
    right: 0;
    top: 0;
    appearance: none;
    padding: 10px;
    border: 2px black solid;
    background: white;
}
input::before{
    top: 2px;
    left: 4px;
    content: '';
    width: 15px;
    height:15px;
    background-image:url("../icons/navigation/resize.svg");
    background-size: cover;
    rotate: 135deg;
    position: absolute;
    transition: 400ms;
}
input:checked{
    right: -30px;
    &::before{
    left: 2px;
    transition: 400ms;
    rotate: -45deg;
    }
}
aside:has(input:checked){
    position:absolute;
    transform: translateX(-100%);
    transition: transform 200ms;
}
#profiles{
    font-family: "Inter";
    container-type: size;
    flex: 1;
}
h1{
    text-align:center;
    margin:0 10px;
    color: #001F3F;
    --c:#FFFFF0;
    text-shadow: -1px -1px 0 var(--c), 1px -1px 0 var(--c), -1px 1px 0 var(--c), 1px 1px 0 var(--c);
    font-size: 2rem;
}
h2{
    font-weight: bolder;
    color: #001F3F;
    --c:#F5F5DC;
    text-shadow: -1px -1px 0 var(--c), 1px -1px 0 var(--c), -1px 1px 0 var(--c), 1px 1px 0 var(--c);
    font-size: 1.7rem;
}
aside div{
    display: flex;
    align-items: center;
    & img{
        width: 21px;
    }
}
hr{
    height: calc(100vh - 2px);
    width: 1px;
    padding: 0;
}
/*
Tiles
Gold_Weave
*/
.profile{
    overflow: auto;
    display: none;
    background: linear-gradient(40deg,  #313244, #11111b, #181825);
    color: white;
    height: 100vh;
    flex-grow: 1;
    padding-left: 5px;
    padding-top: 10px;
}
#red{
    background: url("../Tiles.png");
}
#gold{
    background: url("../Gold_Weave.png");
}
ul{
    list-style-type: none;
    padding-top: 10px;
    padding-left: 20px;
}
li{
    padding: 0 2px;
    padding-left: 1.3rem;
    cursor: pointer;
    cursor: url("../pointer.png");
    user-select:none;
    position: relative;
}
li::before{
    content:'';
    background-image: url("../icons/msn.png");
    background-size: cover;
    width:1.25rem;
    height:1.25rem;
    position:absolute;
    left: 0px;
}
li:hover{
    outline: darkgray dashed 1px;
}
img{
    width: 30%;
    max-width: 400px;
    min-width: 200px;
    border-radius: 2px;
}
.info{
    padding-left:30px;
    display: flex;
    flex-direction: column;
}
p{
    font-size: 1.6rem;
}
.wrap{
    display: flex;
    flex-direction: column;
    margin: 5px;
}
p,h2{
    margin:0;
}
img{
    float: left;
}
.view{
    display: block;
}
@container (max-width: 452px) {
    .profile{
        align-items: center;
        flex-direction: column;
    }
    .view{
        display: flex;
    }
    .info{
        width: 80%;
        padding-left: 0;
    }
}
