* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: sans-serif;
}

h1 {
    font-size: 3rem;
    margin: 15px 0;
}

h2 {
    margin: 0;
    font-size: 1.1rem;
}

h3 {
    margin: 20px 0;
}

p {
    margin: 4px 0;
    font-size: 0.7rem;
}

hr {
    border-top: 2px solid;
}

.main-container {
    width: 500px;
    margin-top: 6px;
}

.sub {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.links a {
    color: black;
    border: solid 1px black;
    border-radius: 10px;
    padding: 2px 6px;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease-in-out;
}

.links a:hover {
    background-color: black;
    color: white;
}

.project-container {
    height: 65vh;
    overflow-y: auto;
}

.project {
    cursor: pointer;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
    -moz-user-select: none;
    -moz--tap-highlight-color: transparent;
    -ms-user-select: none;
    -ms-tap-highlight-color: transparent;
    user-select: none;
    -tap-highlight-color: transparent;
    outline: none;
    box-shadow: none;
    display: flex;
    align-items: start;
    height: 80px;
    overflow: hidden;
    text-decoration: none;
    color: rgb(45, 45, 45);
    margin-bottom: 20px;
    box-sizing: border-box;
    padding: 6px;
    border: solid 1px white;
    border-radius: 38px;
    background-color: rgb(237, 237, 237);
    transition: all 0.4s ease-out;
}

.project:hover {
    border-color: black;
    /* background-color: rgb(214, 214, 214); */
}


.project-icon {
    background-color: #000000;
    padding: 18px;
    width: 65px;
    height: 65px;
    margin-right: 20px;
    border-radius: 50%;
    place-content: center;
}

.project-icon img {
    max-width: 30px;
    max-height: 30px;
}

.project-details {
    margin-top: 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.small-logo {
    width: 48px;
    height: 48px;
}

.stack-div {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.tech-stack {
    padding: 4px 8px;
    background-color: white;
    border-radius: 4px;
    color: rgb(86, 86, 86);
    font-size: 0.7rem;
}

.features {
    margin-bottom: 15px;
}

.features-list {
    padding-left: 0;
    list-style: none;
    color: rgb(86, 86, 86);
    font-size: 0.7rem;
}

.features-list li {
    margin-bottom: 5px;
}

.cta {
    text-decoration: none;
    background-color: black;
    color: white;
    padding: 10px 20px;
    font-size: 0.7rem;
}

@media only screen and (max-width: 600px) {
      .main-container {
        width: 400px;
      }
      h1 {
        margin-top: 60px;
        font-size: 2rem;
      }

      h2 {
        font-size: 1rem;
      }
}