body {
    overflow: hidden;
    background-color: rgb(255, 255, 255);
}

#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#pageContainer {
    position: relative;
}

p {
    color: #000000;
}

h1 {
    color: #000000;
}

#name {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 35px;
    margin: auto;
    padding-top: 100px;
    text-align: center;
}

#description-container {
    max-width: 500px;
    margin: auto;
}

#description {
    text-align: center;
}

#current-project-container{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    max-width: 500px;
    gap: 10px;
    margin: auto;
}

#current-project-description{
    flex: 1;
}

#current-project-title{
    font-weight: bold;
    width: 120px;
}

#projects-spotlight-title {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 25px;
    margin: auto;
    text-align: center;
}

#projects-spotlight-container {
    display: flex;
    justify-content: center;
    padding-top: 10px;
    gap: 10px;
}

.projects {
    padding: 0 1rem;
    font-weight: 500;
    border-right: 1px solid #ffffff;
}

.projects:last-child {
  border-right: none;
}

#contact-title {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 25px;
    margin: auto;
    text-align: center;
    padding-top: 20px;
}

#contact-container {
    display: flex;
    justify-content: center;
    padding-top: 10px;
    gap: 10px;
}

.links {
    padding: 0 1rem;
    font-weight: 500;
    border-right: 1px solid #ffffff;
}

.links:last-child {
  border-right: none;
}

#email {
    text-align: center;
}

#model-container{
    text-align: center;
    cursor: pointer;
}

#head-model {
    margin: auto;
    width: 600px;
    height: 350px;
    display: block;
}

/* project pages  */
#back-btn{
    padding: 30px 30px;
}

.project {
    display: flex;
    flex-direction: row;
}

#project-info-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 50%;
}

#project-images{
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 40px;
    padding-left: 150px;
}

#project-images img{
    width: 450px;
    height: 250px;
    border-radius: 6px;
    border: 3px solid#000000;
}

#project-description {
    text-align: center;
}