body {
    box-sizing: border-box;
    background-color: #0a0a0a;
    color: #ededed;
    font-family: Arial, Helvetica, sans-serif;
    padding: 0;
    margin: 0;
}

header {
 background-color: #0f0f0f;
 padding-bottom: 15px;
 padding-left: 10px;
 border-bottom-left-radius: 10px;
 border-bottom-right-radius: 10px;
 padding-top: 5px;
 height: 40px;
 display: flex;
 align-items: center;
 margin-bottom: 50px;
}

.sudo {
    color: #8d3aa1;
    margin-left: 10px;
}

.cmd-text {
    color: #4d4949;
    font-family: inherit;
}

main {
   margin-bottom: 70px;
}

#intro {
    padding-left: 20px;
    margin-bottom: 60px;
}

#intro h1 {
    font-size: 30px;
}

#projects h2, #projects .sudo {
    margin-left: 20px;
}

.projects-listing {
    display: grid;
    grid-template-columns: minmax(100%, 400px);
    grid-template-rows: auto;
    align-items: center;
    width: 95%;
    margin: 0 auto;
}

.project {
    background-color: #0e0e0e;
    border: solid 1px #8d3aa1;
    border-collapse: collapse;
}

.project {
    padding: 10px 0 5px 10px;
    border-radius: 5px;
    height: 200px;
    padding-left: 30px;
    transition: ease-in-out 0.3s;
    position: relative;
}

.project:hover {
    z-index: 999;
    background-color: #161616;
    padding-bottom: 20px;
}

.project {
    margin-top: -50px;
}

.project:nth-of-type(1) {
    margin-top: 0;
}

.project .content {
    display: flex;
}

.project .content img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-top: 25px;
    margin-right: 10px;
    border-radius: 12px;

}

.links {
    display: block;
    margin-top: auto;
    position: absolute;
    top: 150px;
}

.links svg {
    margin: 0 10px;
   border: solid 1px rgb(28, 134, 134);;
   border-radius: 8px;
   padding: 8px;
   transition: ease-in-out 0.3s;
}

.links svg:hover {
    background-color: rgb(28, 134, 134);
}

@media only screen and (min-width: 800px) {
  .projects-listing {
    display: grid;
    grid-template-columns: repeat(3, minmax(33%, 400px));
    grid-template-rows: auto;
    align-items: center;
    width: 80%;
    margin: 50px auto 0 auto;
    position: relative;
  }

.project {
    background-color: #0e0e0e;
    border: solid 1px #8d3aa1;
    border-collapse: collapse;
}

.project {
    border-radius: 5px;
    height: 200px;
    margin-left: -50px;
    transition: ease-in-out 0.3s;
    margin-top: 0;
}

.project:hover {
    z-index: 999;
    background-color: #161616;
    padding: 15px;
}

.project {
    margin-left: -30px;
}




}


