html{
    background-color: #000000;
    color: white;
    font-family: "Fira Code", monospace;
    
}
.website_border{
    margin: 0% 10%;
}

body{
    max-width: 100vw;
    margin: 0;
    overflow-x: hidden;
}
/*Nav menu*/

.menu {
    font-size: 14pt;
    display: flex;
    font-weight: 500;
    justify-content: center;
}

.menu li {
    list-style: none;
    align-content: center;
    text-align: center;
    padding: 8pt 8pt;
    margin: 0 20px; /* Adjust the value as needed for spacing */
}

.menu a {
    text-decoration: none;
    text-align: center;
    color: red;
}

.menu li:hover {
    background-color: #313031;
    border-radius: 4px;
}

.grid_landing{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.profile_view {
    background-color: rgb(11, 11, 11);
    min-width: 400px;
    width: 20vw;
    border-radius: 8px;
    transition-duration: .2s;
    position: sticky;
    top: 10%;
    z-index: 1000;
    height: fit-content;
}
.centered{
    display: flex;
    justify-content: center;
}
.profile_view:hover{
    scale: 1.02;
}
.components{
    display: flex;
    justify-content: center;
    padding-top:10% ;
    
}
.components img{
    width: 220px;
    height: 220px;
    border-radius: 50%;
}
.body_client h1{
    color: red;

}
.links{
    display: grid;
    grid-template-columns: repeat(6,1fr);
}
.links_blocks img{
    width: 32px;
    height: 32px;
    transition: .2s;
}
.links_blocks:hover{
    scale: 1.02;

}
.body_client{
    margin: 10%;
}
.certs{
    display: grid;
    grid-template-columns: repeat(6,1fr);
}


/*Console Design*/
.console_border{
    border-radius: 8px;
    background-color: #090909;
    width: 100%;
    height: 400px;
    max-height: 400px;
    
}
.console_header{
    width: 100%;
    max-height: 8%;
    background-color: #313031;
    border-radius: 8px 8px 0px 0px;
    display: grid;
    grid-template-columns: 10% 80% 10% ;
    text-align: center;
    margin: 0px;
    padding: 0;
    line-height: 0;
}
.console_buttons{
    display: flex;
    align-items: center;
    
}
.console_close{
    background-color: red;
    border-radius: 8px;
    width: 16px;
    height: 16px;
    margin: 0px 4px;
}
.console_max{
    background-color: green;
    border-radius: 8px;
    width: 16px;
    height: 16px;
    margin: 0px 4px;
}
.console_minimize{
    background-color: yellow;
    border-radius: 8px;
    width: 16px;
    height: 16px;
    margin: 0px 4px;
}
.post{
    width: 40vw;
    height: 20vh;
    background-color: rgb(11, 11, 11);
    border-radius: 8px;
    margin-bottom: 2%;
    transition: .2s;
    padding-left: 2%;
    padding-right: 2%;
}
::selection{
    background-color: red; 
}
.post:hover{
    scale: 1.02;
    box-shadow: 20px 0px 0px -1px rgb(255, 255, 255);

}
.feed{
    justify-items: center;
}
.resume_download{
    width: 80%;
    height: 60px;
    background-color: rgb(255, 255, 255);
    border-style: none;
    border-radius: 8px;
    transition: .2s;
    font-family:"Fira Code", monospace;
    font-size: 20px;
    font-weight: 500;
    color: black;
}
.resume_download:hover{
    cursor: pointer;
    scale: 1.02;
}

.console_terminal{
    height: 92%;
    overflow-y: auto;
    border-radius:  0px 0px 8px 8px;
    margin: 0px 16px;
}
.button{
    display: flex;
    justify-content: center;
}
.console_input{
    width: 100%;
    border-style: none;
    margin: 0%;
    padding: 0%;
    background-color: #090909;
    color: #1CFF05;
    font-size: 18px;
    font-weight: 700;
    outline: none;
}



pre{
    font-size: 18px;
    font-weight: 700;
    color: #1CFF05;
}

/*Styling scalable Objs*/
.spacer{
    height: 16pt;
}
