html, body {
    margin: 0;
    padding: 0;
    color: #FBFBFE;
}

body {
    display: grid;
    place-items: center;
    background-color: #362E2E;
    min-height: 100vh;
    font-family: "Life Savers", serif;
}

a {
    text-decoration: none;
    color: #FBFBFE;
    font-family: "Life Savers", serif;
    font-weight: 100;
    font-style: normal;
}

.top-bar {
    position: absolute;
    padding: 0;
    margin: 0;
    left: 0;
    top: 0;
    width: 100vw;
    height: 8.5vh;
    border-bottom: 1px solid #674E4E;
}

.top-bar .left, .right {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    padding: 10px;
}

.left {
    float: left;
}

.right {
    float: right;
}

.left, .right h2, a {
    margin-right: 20px;
    margin-left: 30px;
}

.container {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    width: 70vw;
    height: 85vh;
    top: 15vh;
}

.project-box {
    display: flex;
    flex-direction: column;
    background-color: #413535;
    color: #FBFBFE;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    border: none;
    margin: 2%;
    width: 18%;
    height: 35%;
    text-align: center;
}

.project-box h2 {
    margin: 40px;
}

.project-box img {
    height: 60%;
    width: 100%;
    object-fit: cover;
    margin: 0;
}

.project-box:hover {
    border: 2px solid #0A84FF;
}


.life-savers-regular {
  font-family: "Life Savers", serif;
  font-weight: 400;
  font-style: normal;
}

.life-savers-bold {
  font-family: "Life Savers", serif;
  font-weight: 700;
  font-style: normal;
}

.life-savers-extrabold {
  font-family: "Life Savers", serif;
  font-weight: 800;
  font-style: normal;
}

.libre-bodoni-regular {
  font-family: "Libre Bodoni", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}