* {
  box-sizing: border-box;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: antiquewhite;
}

.header {
  grid-area: header;
  background-color: #5d2424;
  padding: 30px;
  text-align: center;
  font-size: 60px;
  border-radius: 20px;
}

.grid-container {
  display: grid;
  grid-template-areas: 
    'header header header header header header'
    'left left left right right right'
    'FL FL FL FR FR FR';
  row-gap: 10px;
  column-gap: 10px;
}

.project-title {
    font-size:2.2rem;
    font-weight:600;
    color: whitesmoke;
}

.vid {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.wp {
    color: whitesmoke;
    text-align: left;
    font-size: 2rem;
    padding: 20px;
    margin-top: 12px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    max-width: 65ch;
}

.left,
.middle,
.right, .FL, .FR {
  padding: 10px;
}

.left {
  grid-area: left;
  border-radius: 20px;
  text-align:center;
}

.middle {
  grid-area: middle;
  border-radius: 20px;
}

.right {
  grid-area: right;
  border-radius: 20px;
  text-align:center;
}

.FL {
    grid-area: FL;
    background-color: #614242;
    padding: 10px;
    text-align: center;
    border-radius: 20px;
}

.paras {
    column-count: 2;
    column-gap: 10px;
    text-align: left;
}

.FR {
  grid-area: FR;
  background-color: #8e4040;
  padding: 10px;
  text-align: center;
  border-radius: 20px;
}

table, th, td{
    border: 0px solid;
    margin-left: auto;
    margin-right: auto;
}

#pfp {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.6);
    margin-right: 40px;
}

#skillsp {
    margin-top: 0px;
}

.left, .right {
    display: flex;
    flex-direction: column;
    width: 100%;
}
