@font-face{
    src: url(/assets/font/handwriting.ttf);
    font-family: hand;
}
body{
    background: royalblue;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    font-family: hand;
}
::-webkit-scrollbar{
    display: none;
}
.container{
    margin-top: 91px;
    width: fit-content;
    background: #fff;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}
.container .left{
    min-width: 236px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 19px;
    overflow-y: auto;
}
.container .left img{
    width: 159px;
    height: 159px;
    border-radius: 50%;
    border: 5px solid royalblue;
    margin-top: 15px;
    user-select: none;
}
.container .left h1{
    margin: 3px;
    color: dimgray;
    font-size: 29px;
    width: 100%;
    text-align: center;
}
.container .left p{
    width: 100%;
    color: black;
    padding: 0;
    text-align: center;
    margin: 0;
    font-size: 17px;
}
.container .left .contact{
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container .left .contact a{
    width: 96%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: royalblue;
    margin-top: 3px;
    text-decoration: none;
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    transition: 0.5s;
    user-select: none;
}
.container .left .contact a:hover{
    background: rgb(33, 79, 216);
}
.container .left .contact a i{
    margin: 5px;
    font-size: 19px;
    color: #fff;
}
.container .left .contact a p{
    text-align: right;
    color: #fff;
    padding-right: 9px;
}
.container .right{
    width: 100%;
    padding: 5px;
    height: 427px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.container .right .top{
    width: 100%;
    margin: 3px;
    display: flex;
    align-items: center;
    height: 51px;
    background: royalblue;
    border-radius: 4px;
}
.container .right .top h1{
    margin: 5px;
    color: #fff;
    width: 100%;
    font-size: 27px;
}
.container .right .top i{
    cursor: pointer;
    color: royalblue;
    padding: 8px;
    transition: 0.5s;
    background: #fff;
    border-radius: 5px;
    margin: 5px;
}
.container .right .top i:hover{
    color: dimgray;
}
.container .right .top #photo{
    display: none;
}
.container .right #load{
    width: 99px;
    height: 99px;
    margin: 0 auto;
}
.container .right #lis{
    width: 100%;
    height: calc(100% - 59px);
    display: grid;
    grid-template-columns: repeat(2,1fr);
    overflow-y: scroll;
    gap: 5px;
}
.container .right #lis a{
    text-decoration: none;
    user-select: none;
    margin: 0 auto;
}
.container .right #lis a img{
    width: 236px;
    height: 236px;
    object-fit: cover;
    border-radius: 5px;
}

@media(max-width:769px){
    .container{
        width: 98%;
    }
    .container .right #lis a img{
        width: 195px;
        height: 195px;
    }
    .container .right .top h1{
        font-size: 25px;
    }
}
@media(max-width:642px){
    .container{
        margin-top: 19px;
        flex-wrap: wrap;
        height: max-content;
    }
    .container .left{
        width: 96%;
    }
    .container .left h1{
        font-size: 6vw;
        margin-top: 5px;
    }
    .container .right #lis a img{
        width: 159px;
        height: 159px;
    }
    .container .right .top h1{
        font-size: 23px;
    }
    .container .left .contact a{
        width: 91%;
    }
}