:root{
    --white: #ffffff;
    --black: #1d1e18;
    --red: #dd403a;
    --green: #44cf6c;
    --blue: #3b5998;
    --lighest-gray: #EBEBEB;
    --profile-image-dimension: 224px;
    --center-box-glue-dimension: 320px;
}

a{
    text-decoration: none;
}

.main_box{
    background-color: var(--lighest-gray);
    height: 100vh;
}

.glue{
    height: 7em;
}

@media (min-width: 0px) {
    .main_box{
        display: flex;
        flex-direction: column;
    }
}

@media (min-width: 600px) {
    .main_box{
        display: flex;
        flex-direction: column;
    }
}

@media (min-width: 900px) {
    .main_box{
        display: flex;
        flex-direction: row;
    }
}

.nav{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--black);
    padding: 0.313em;
}

.content_box{
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--lighest-gray);
    height: 100%;
}

.center_box{
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: inherit;
    overflow-y: scroll;
}

.content_box_glue{
    width: var(--center-box-glue-dimension);
}

iframe{
    border: none;
    overflow: hidden;
}

.iframe{
    display: grid;
    align-items: baseline;
    justify-content: center;
}

.achievements{
    display: flex;
    flex-direction: column;
}

.model{
    display: grid;
    align-items: baseline;
    justify-content: center;
}

.model>a{
    position: relative;
    top: 0;
    transition: ease 0.25s;
}

.model>a:hover{
    top: -8px;
}


.vertical_text{
    align-items: center;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.25);
    display: flex;
    height: 2.5em;
    justify-content: center;
    width: 2.5em;
}

i{
    display: block;
}

.model>a{
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    align-items: center;
    width: fit-content;
    row-gap: 0.5em;
    padding: 0.5em;
    color: black;
    text-decoration: none;
    height: 15em;
}

.model >div >div{
    display: flex;
    flex-direction: row;
    column-gap: 0.5em;
}

.big_image{
    width: 7em;
    height: 9em;
}

.square_image{
    width: 2em;
    height: 2em;
}

/* Skills Section */

.major_skills{
    display: grid;
    padding: 2em 1.5em 2em 2em;
}

.major_model{
    display: flex;
    flex-direction: column;
    width: fit-content;
    align-items: center;
    row-gap: 0.25em;
}

.major_model > img{
    width: 4em;
    height: 4em;
}

.skill_circle_box{
    display: flex;
    flex-direction: row;
}

.skill_circle{
    background-color: #7f7f7f;
    border-radius: 50%;
    width: 0.75em;
    height: 0.75em;
    margin: 0 0.1em;
}

/*
    Toggle Bar
*/
.toggle{
    display: flex;
    flex-direction: row;
}

.toggle > button{
    display: block;
    padding: 0.5em;
    width: 5em;
    text-align: center;
    background-color: white;
    border: none;
    transition: ease 0.25s;
}

.toggle > button:hover{
    cursor: pointer;
    transform: scale(0.8);
}
