body{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-image: url("../images/projects-background.png");
    background-position-x: center;
    background-position-y: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
}
.overlay {
    position: fixed; 
    display: none; 
    width: 100%; 
    height: 100%; 
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5); 
    align-items: center;
    display: flex;
    justify-content: center;
}
#projects{
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 25px;
    
}
.project{
    border-width: 1px;
    border-style: solid;
    border-color: rgb(69, 67, 67);
    border-radius: 20px;
    width: 55%;
    text-align: center;
    background-color: rgba(255,255,255,0.7);
}
.header h1{
    text-align: center;
    font-size: 50px;
    margin-top: 0px;
    padding-top: 15px;
}
.project-details{
    border-width: 1px;
    border-style: solid;
    border-color: black;
    border-radius: 20px;
    margin: auto;
    text-align: center;
    width: 70%;
    background-color: white;
}
img{
    width: 20%;
}
button {
    cursor: pointer;
}
.project-description{
    padding-left: 25px;
    padding-right: 25px;
}
.more{
    font-size: 20px;
    border:3px;
    padding: 7px;
    border-radius: 20px;
    background-color: white;
    cursor:pointer;
    border-color: black;
    border-style: solid;
    font-weight: bold;
    margin-bottom: 20px;
}
.more:hover{
    background-color: rgb(230,230,230);
}
.description-text{
    font-size: 20px;
}
a, a:visited {
    color: rgb(51,102,204);
    text-decoration: none;
}