@import url(//fonts.googleapis.com/css?family=Oswald:400);

* {
    margin: 0 auto;
    padding: 0;
  }

  body::before{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black overlay */
    z-index: -1; /* Ensure it stays behind other content */
  }
  body {
    background-image: url("./Media/background/bluebackground.jpeg");
    font-family: "Oswald", "Helvetica Newe", Helvetica, sans-serif;
    background-size: cover;
    background-position: center;
    color: white;
    padding-bottom: 10%;
  }

  #pfp {
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


#me {
    border-radius: 50%;
    margin-top: 10px;
    width: 300px;
    display: flex;
    align-items: center;
    outline-style: double;
    outline-color: rgb(55, 95, 121);
    outline-width: 10px;
}

h1 {
    
    font-size: 2em;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

#gamenav {
    list-style-type: none;
    padding: 0;
    margin: 20px auto;
    display: flex;
}

#subsubtitle {
    margin: 20px auto;
    font-size: 1.5em;
    display: flex;
}

#project-list-container {
    max-width: 1200px; /* Adjust the max-width as needed */
    margin: 0 auto;
}

#project-description {
    font-size: 1.2em;
    margin: 50px auto;
    max-width:1000px;
}

#stretch{
    width: 100%;
}
#halfstretch{
    width: 50%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.drama{
    color:rgb(255, 188, 140);
}

#fullwidthvid{
    width: 100%;
    height: 40%;
    display: block;
    margin: 0 auto;
}
#fullwidthvidborderless{
    width: 100%;
    height: 40%;
    display: block;
    margin: 0 auto;
    border: none; /* Remove border for a cleaner look */
}

#specifications{
        font-size: 1.2em;
    margin: 30px auto;
    text-align: center;
}

ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center the list items */
}

li {
    flex: 1 1 calc(33.333% - 20px);
    margin: 10px;
    box-sizing: border-box;
}

.image-container {
    width: 100%;
    padding-bottom: 100%; /* This creates a 1:1 aspect ratio */
    position: relative;
}
.image-container {
    width: 100%;
    padding-bottom: 100%; /* This creates a 1:1 aspect ratio */
    position: relative;
}

.ProjectImage {
    width: 80%;
    height: 80%;
    position: absolute;
    top: 10%;
    left: 10%;
    object-fit: cover; /* This will ensure the image covers the box, cutting off parts if necessary */
}
.ProjectImageOverlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover; /* This will ensure the image covers the box, cutting off parts if necessary */
}

.hidden-link {
  color: inherit; /* Inherit the color from the parent element */
  text-decoration: none; /* Remove the underline */
}

#picPreview {
    border-radius: 50%;
    margin-top: 10px;
    width: 300px;
    height: 300px; /* Ensure the height matches the width for a perfect circle */
    object-fit:cover;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the image inside the circle */
    overflow: hidden; /* Hide any part of the image that overflows the circle */
    outline-style: double;
    outline-color: rgb(55, 95, 121);
    outline-width: 10px;
}

#picPreview img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the circle, cutting off excess parts */
}

#visiblelink {
    font-weight: bold;
    color: rgb(140, 194, 255);
}