* {
    margin: 0 ;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    display: block;
    font-family: sans-serif, Arial, Helvetica;
    line-height: 1.6;
    color: #070605;
    margin: 20px auto;
    padding: 15px 15px 10px 15px;
    background-color: #deded5;
}

p {
    /* normal paragraph spacing; remove flex-only properties */
}

button {
    background-color: #deded5;
    padding: 3px 10px 3px 10px;
    box-shadow: #070605 3px 2px 0px;
    cursor: pointer;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    border: #070605 2px solid;
}

h1, h2, h3 {
    color:#070605;
    font-family: monospace;
}

.col {
    display: flex;
    width: 10%;
    height: 100%;
    margin: 3vw 3vw 5vw 5vw; 
    padding: 10px;

    background-color:#070605
}

#page {
    display: flex;
    flex-direction: row;
    height: 100vh;
    gap: 0px;
}

#main {
    display: flex;
    flex-direction: column;
    max-height: max-content;
}

#first-col {
    display: flex;
    flex-direction: column;
    height: max-content;
    border-bottom: 2px solid #070605;
}

#ribbon {
    width: 100%;
    height: 15px;
    background: rgb(154, 153, 153)
}

#header{
    display: flex;
    width: 100%;
    height: min-content;
    max-height: 70px;
    align-items:center;
    justify-content:flex-start;
    gap: 20px;
    border-bottom: 2px solid #070605;
}

#name {
    padding: 5px 10px 5px 15px;
}

#location{
    margin-left: auto;
    padding-right: 15px;
}

#star {
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    overflow: contain; 
    
    border-left: 2px solid #070605;
    border-right: 2px solid #070605;
}

#computer-icon {
    max-width: 100%;
    height: auto;
    width: 50px;
    overflow: contain; 
    margin-top: 10px;
}

#edu {
    margin-top: 10px;
}

#about-me{
    display: flex;
    width: 100%;
    height: max-content;
    border-top: 2px solid #070605;
    border-bottom: 2px solid #070605;
}

#short-desc {
    display: flex;
    flex-direction: row;
    padding: 0px 10px 0px 0px;
}

#intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 10px 5px 10px;

}

#tech-stack {
    margin-left: 20px;
    padding-left: 10px;
    border-left: 2px solid #070605;
}

#school {
    display: flex;
    flex-direction: row;
    max-width: 500px;
    margin: 0px 10px 0px 10px;
    padding: 5px 10px 5px 10px;
    gap: 15px;
}

#left-col {
    max-width: 437px;
}
#get-in-touch{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    padding-bottom: 10px;
    background-color: rgb(154, 153, 153);
    border-top: 3px dashed #070605;
    border-bottom: 3px dashed #070605;
}

#contacts {
    display: flex;
    flex-direction: space-evenly;
    gap: 15px;
    background-color: rgb(154, 153, 153);
}
#design {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    margin-bottom: 15px;
    padding: 5px 20px 20px 20px;
}

#initiative {
    display: flex;
    flex-direction: row;
    width: 417px;
    margin: 0px 10px 0px 10px;
    padding: 5px 10px 5px 10px;
}

#initiative p {
    font-size: 14px;
}

#tt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

#qr-t4t {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;

}

#ootdlier {
    width: 400px;
}

#scholared-links, #ootdlier-links{
    display: flex;
    flex-direction: row;
    margin-top: 15px;
    gap: 25px;
}

#right-col {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    border-left: 2px solid #070605;
}

#project {
    margin: 0px 10px 10px 10px;
    padding: 15px 15px 5px 10px;
}

#contributions {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin: 0px 10px 0px 10px;
    padding: 15px 15px 5px 10px;

}

#press {
    padding: 20px 20px 10px 15px;
    border-left: 2px solid #070605;
}

.articles{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.articles a{
    font-size: 14px;
    color: #070605;
}

#others {
    display: flex;
    flex-direction: row;
}

#filler {
    width: 10%;
    height: 100vh;
    background-color: #070605;
}

