html {
  font-family: Menlo, Monaco, Lucida Console, "Courier New", Courier, monospace;
}

body {
  margin: 0;
  padding: 0;

  text-align: center;
}

h1,
h2,
h3,
h4 {
    margin: 0;
    font-family: system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
}

.navbar{
    display: none;
}

/* .navbar{
    width: 100%;
    display: flex;
    position: fixed;
    align-items: center;
    justify-content:space-evenly;
    top: 0;
    background-color: #e9c0ff;
    padding: 5px;
  }

.navbar a:hover{
    padding:25%;
    background-color: #dfa4ff;
} */
/* .navbar #name{
    align-self: center;
} */

.profile-section{
    margin-top: 55px;
    display: inline-flex;
    align-items: center;
    
}

#profile-pic{
    flex: 1;
    border-radius: 15px;
    width: 150px;
    height: 150px;
}

#profile-links{
    flex: 1;
    display: flex;
    flex-direction: column; 
    align-content: center;

    text-align: left;
    margin-left: 10%;
    margin-top: 15px;
    margin-bottom: 15px;
    
}

a,
a:visited,
a:active {
    color: black;
    text-decoration: none;
}

a:hover {
    color: rgb(255, 255, 255);
}

.tech-stack{
    display: inline;
    align-items: top;
    
}

#lang-list, #data-list, #ide-list{
    list-style-type: none;
    padding: 0;

}

#tech-item-list{
    text-align: center;
    padding: 8px;
    background-color: rgb(94, 94, 94);
    color: white;
    border-radius: 15px;
    display: inline-block;
    text-decoration: dotted;
    text-wrap: pretty;
    margin-bottom: 5px;
}

#project-list, #item-list{
    display: inline-block;
    text-decoration: dotted;
    text-wrap: pretty;
    text-align: left;
    line-height: 1.5;
}

#projects-container{
    display: inline-block;
    align-items: center;
    width: 100%;
    /* padding-right: 10px; */
    background-color: rgb(239, 237, 228);
    border-radius: 25%;
    margin-bottom: 5px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 25%;
    -ms-border-radius: 25%;
    -o-border-radius: 25%;
}

li, #item-list{
    padding-bottom: 5px ;
    
}