body {
    margin: 0;
    display: flex;
    justify-content: center;
    padding: 1rem 2rem;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
    background: #17B3D9;
    background: linear-gradient(180deg, #1CB5E0 0%, #000851 100%);
}

#main {
    width: 750px;
    display: flex;
    flex-direction: column;
}

#navbar {
    display: flex;
    justify-content: space-between;
    border-bottom: 3px solid #000851;
    margin-bottom: 1rem;
}

#navbar h1 {
    margin: 0;
    margin-right: 2rem;
    margin-bottom: 0.5rem;
    font-size: 35px;
    color: #000851;
    text-shadow: 2px 3px aliceblue;
}

#navbar a {
    text-decoration: none;
    color: #000851;
    font-weight: bold;
    background-color: #f0f8ff;
    border: 2px solid #000851;
    padding: 0.3rem 0.5rem;
    height: fit-content;
}

#navbar a:hover {
    background-color: #000851;
    color: aliceblue;
}

#projects {
    display: flex;
    flex-direction: column;
}

#projects > div {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.project-y {
    width: 300px;
    height: 300px;
    background-color: #3CC4F0;
    border: 3px solid #000851;
    margin: 1rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.project-y h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #000851;
    text-shadow: 1px 2px aliceblue;
}

.project-y img {
    border: 2px solid #000851;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.7rem;
}

.project-tags span {
    background-color: aliceblue;
    color: #000851;
    border-bottom: 2px solid #000851;
    padding: 0.3rem 0.5rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.project-btn {
    display: flex;
}

.project-btn a {
    background-color: #000851;
    border: 2px solid aliceblue;
    padding: 0.3rem 1rem;
    text-decoration: none;
    color: aliceblue;
    margin-right: 0.5rem;
    font-weight: bold;
}

.project-btn a:hover {
    background-color: aliceblue;
    color: #000851;
}