*{
 cursor: url("../assets/s.cur"),default;
}
body {
    background-image: url("../assets/bg.png");
    color: #f3f9f1;
}

#shell {
    width: 80px;
    height: 700px;
    margin-top: 50px;
    margin-left: -15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgb(243, 244, 246);
    border-radius: 10px;
    transition: .3s;
    overflow: hidden;
}

.box {
    display: block;
    height: 10%;
    width: 85%;
    margin: 9px;
    border-radius: 5px;
    position: relative;
    transition: .3s;
    color: rgb(160, 160, 175);
}

.box i {
    font-size: 30px;
    position: absolute;
    margin: 7px 0 0 13px;
}

.box:nth-child(1)::before,
.box:nth-child(5)::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgb(55, 65, 81);
    position: absolute;
    bottom: -10px;
}

.box span {
    position: relative;
    top: 22px;
    left: 80px;
    font: 500 20px '';
    opacity: 0;
    transition: .1s;
}

#shell:hover {
    width: 270px;
}


.box:hover {
    background-color: rgb(55, 65, 81);
}

#shell:hover span {
    opacity: 1;
}

.box:hover {
    color: #fff;
}

.iframe-box {
    position: fixed;
    /* margin-top: 70px; */
    left: 100px;
    top: 70px;
    bottom: 20px;
    /* margin-left: 300px; */
    border: 10xp solid black;
    border-radius: 50px;
    right: 20px;
    /* width: 500px; */
    /* height: 500px; */
    z-index: 200;
    background-color: white;
    overflow: hidden;
    transition: .3s;
}

#shell:hover+div {
    left: 300px;
}

#mainFrame {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#mainFrame::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

#mainFrame::-webkit-scrollbar-thumb {
    background-color: #000000;
}

.list {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
    font-size: 22px;
}
#photo{
    width: 40px;
    height: 40px;
    /* object-fit: contain; */
    border-radius: 50%;
    border: 3px solid rgb(212, 210, 210);
}

#flag{
    width: 40px;

}