/*###################################################*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: rgb(15,15,15);
    color: rgb(255 252 232);
    scrollbar-width:thin;
    scrollbar-color: #656565 transparent;
}

body, html {
    width: 100%;
    height: 100%;
}

body {
    display: flex;
    justify-content: center;
    font-family:Arial, Helvetica, sans-serif;
}

@font-face {
    font-family: "C059";
    src: url("fonts/C059.woff") format("woff");
}
/*###################################################*/

.content-frame {
    overflow: hidden;
    height: auto;
    width: 580px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(255, 252, 232, 0.7);
    border-radius: 16px;
    box-shadow: 0 0 30px 5px rgb(57, 57, 57);
    margin: 50px 50px 50px 50px;
    position: relative;
}
/*###################################################*/

.footer {
    position:absolute;
    bottom: 0;
    width: 100%;
    height: 3rem;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(36 36 36);
}
/*###################################################*/

.tabs {
    width: 100%;
    display: flex;
}

.tab1, .tab2 {
    font-size: 20px;
    border-width: 0;
    width: 50%;
    height:2.5rem;
    cursor: pointer;
    transition: color 0.3s, letter-spacing 0.3s, background-color 0.3s;
}

.active-tab {
    background: rgb(36 36 36);
    cursor: not-allowed;

}

.inactive-tab:hover {
    color: rgb(166 167 255);
    letter-spacing: 0.8px;
}

.tab1 {
    border-bottom-right-radius: 16px;
}

.tab2 {
    border-bottom-left-radius: 16px;
}
/*###################################################*/

.aasher-content {
    overflow-y: auto;
    width: 100%;
    height: 100vh;
    display: none;
    flex-direction: column;
    padding-top: 1rem;
    margin-bottom: 4rem;
}
/*###################################################*/

.tabassat-content {
    overflow-y: auto;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
    margin-bottom: 4rem;
}
/*###################################################*/

.profile {
    display: block;
    margin: 0 auto;
}

.name {
    font-family: "C059";
    font-size: 2rem;
    font-weight: bold;
    padding-top: 10px;
    text-align: center;
}

.bio {
    font-size: 1.4rem;
    text-align: center;
    color:rgb(135 135 135);
}
/*###################################################*/

.icons-frame {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content:center;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 30px;
}

.row-icons {
    display: flex;
}

.icons {
    border-width: 0;
    margin: 15px;
    transition: transform 0.3s ease;
}

.icons:hover {
    transform: scale(1.5);
    cursor: pointer;
}

@media only screen and (max-width:525px) {
    .name {
        font-size: 1.5rem;
    }
    .bio {
        font-size: 1.1rem;
    }
    .icons {
        margin: 10px;
    }
}

@media only screen and (max-width:425px) {
    .content-frame {
        margin: 1rem 1rem;
    }
    .name {
        font-size: 1.3rem;
    }
    .bio {
        font-size: 1rem;
    }
    .icons {
        transform: scale(0.8);
        margin: 4px;
    }
    .icons:hover {
        transform: none;
    }
    .profile {
        width: 100px;
    }
    .tab1, .tab2, .footer {
        font-size: 15px;
    }
}
