body {
    margin: 0;
    padding: 0;
    background-color: #222526;
}


.projects {
    height: 100vh;
    margin-top: 20%;
    margin-bottom: 0;
    background-color: #222526;
}

.projectsText {
    color: #F2F2F2;
    font-size: 7vh;
    text-align: center;
    padding: 10vh 0 0 0;
    font-family: sans-serif;
}

.projectsWrapper {
    display: flex;
    margin-top: 10%;
}

.projectsWrapper img {
    border-radius: 10%;
    width: 30vh;
    height: auto;
    transition: transform 0.3s ease;
}

.projectsWrapper img:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.project1 {
    margin-left: auto;
}

.project1Name {
    color: #F2F2F2;
    font-size: 3vh;
    text-align: center;
    font-family: sans-serif;
}

.project1Description {
    color: #F2F2F2;
    font-size: 2vh;
    text-align: center;
    font-family: sans-serif;
}

.project2 {
    margin-left: auto;
}

.project2Name {
    color: #F2F2F2;
    font-size: 3vh;
    text-align: center;
    font-family: sans-serif;
}

.project2Description {
    color: #F2F2F2;
    font-size: 2vh;
    text-align: center;
    font-family: sans-serif;
}

.project3 {
    margin-left: auto;
    margin-right: auto;
}

.project3Name {
    color: #F2F2F2;
    font-size: 3vh;
    text-align: center;
    font-family: sans-serif;
}

.project3Description {
    color: #F2F2F2;
    font-size: 2vh;
    text-align: center;
    font-family: sans-serif;
}




.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.popup-content {
    background-color: #494949;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    border-radius: 20px;
    width: 70vw;
    max-width: 1600px;
    height: auto;
    max-height: 1000px;
    text-align: left;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: relative;
}

#popupImage {
    width: 55%; 
    height: auto;
    border-radius: 20px;
    margin-right: 8%;
    position: relative;
}

#popupName {
    font-size: 3vh;
    font-weight: bold;
    margin-bottom: 10px;
}

#popupDescription {
    font-size: 2vh;
}

.popup-text {
    color: #F2F2F2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 10px;
    font-family: sans-serif;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 10px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}



/* Navigation buttons */
.nav-button {
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 2em;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

#prevImage {
    left: 1.5%;
}

#nextImage {
    right: 1.5%;
}
