html{
    background-image:linear-gradient(180deg, black, rgb(39, 1, 17));
    height: 100vh;
    overflow: hidden;
}
a{
    text-decoration: none;
    color: black;
}

header{
    padding: 20px 20px;
    height: 5%;
    width: 100%;
    font-size: 40px;
    background-color: rgb(10, 10, 10);
    display: flex;
    align-items: center;
    border-bottom: white 2px solid;
    z-index: 10;
    transition: all 1s;
}
.tit1{
    color: white;
    cursor: pointer;
    margin-right: 7px;
}
.tit2{
    background-color: orange;
    border-radius: 5%;
    cursor: pointer;
    box-shadow: 0 0 5px 5px orange;
}



#header{
    background-color: orange;
    padding: 1%;
    display: flex;
    height: 25vh;
    width: 100%;
    z-index: 10;
}
.img{
    z-index: 10;
    img{
        border-radius: 50px;
        z-index: 10;
        aspect-ratio: 1/1;
        height: 100%;
    }
}
.user{
    display: flex;
    align-content: space-between;
    flex-direction: column;
    padding-left: 3%;
}
.name{
    font-family: monospace;
    font-size: 50px;
    position: relative;
    bottom: 30%;
}
.desc{
    position: relative;
    bottom: 50%;
    font-size: 20px;
}


aside{
    height: 100vh;
    width: 2%;
    position: fixed;
    float: left;
    transition: all 2s ease-out;
    background: rgba(255, 166, 0, 0.7);
    z-index: 12;
    box-shadow: 0px 0 20px 0 rgba(255, 166, 0, 0.7);
}
aside ul{
    list-style-type: none;
    font-size: 0;
    width: 0;
    opacity: 0;
    position: absolute;
    transition: all 2s linear;
}
aside ul li{
    position: sticky;
    width: 0;
    margin: 50px 0 65px 0;
}
aside:hover{
    width: 15%;
    box-shadow: 10px 0 15px 5px rgba(255, 166, 0, 0.7);
    ul{
        font-size: 20px;
        opacity: 100%;
        transition: all 2s linear !important;
    }
}


main{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 150px);
    gap: 10% 5%;
    margin: 1% 5% 0 5%;
    height: calc(75vh - 10%);
}
.mcontent{
    background-image: linear-gradient(45deg, red, orange);
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1/1;
    border-radius: 20%;
    transition: all 1s;
    z-index: 11;
}
.photo{
    width: 98%;
    border-radius: 20%;
}
.mcontent:hover{
    transform: scale(150%);
    transform-origin: bottom;
    z-index: 20;
}