#title {
    text-align: center;
    padding: 50px 0px 0px 0px;
    font-weight: bold;
    font-size: 40px;
    color: rgb(71, 67, 67);
}

.project {
    display: flex;
    justify-content: space-between;   
}

main {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

#rese .image img {
    max-height: 60%;
    max-width: 90%;
    aspect-ratio: 584/321;
}

#cpu {
    height: 60%;
    max-height: 350px;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.desc-and-skills {
    padding: 5%;
}

.skills {
    list-style: none;
    padding: 0px 50px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.skills li {
    font-size: 12px;
    background-color: rgb(244, 241, 241);
    border: 2px solid lightgrey;
    padding: 7px 14px;
    border-radius: 20px;
    margin: 0px 10px 10px 0px;
}

.skills li:hover {
    background-color: lightgrey;
}

.image img {
    height: 90%;
}


.watersort-image {
    display: flex;
}

.watersort-image img {
    width: 25%;
    margin: 2%;
}

h2:nth-of-type(odd) {
    text-align: left;
}

h2:nth-of-type(even) {
    text-align: right;
}

.project-title {
    font-size: 1.75em;
    padding: 2% 2.5%;
}

.project .content p {
    padding: 2.5% 50px;
}

.hidden {
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s;
}

.show {
    transform: translateX(0);
    opacity: 1;
}

.watersort-image img:nth-of-type(2) {
    transition-delay: 250ms;
}

.watersort-image img:nth-of-type(1) {
    transition-delay: 500ms;
}

button {
    display: inline-block;
    border-radius: 4px;
    background-color: #333;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 16px;
    padding: 20px 30px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
    outline: none;
    font-family: 'Lora', serif;
}
  
.learn-more-button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}
  
.learn-more-button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}
  
.learn-more-button:hover span {
    padding-right: 25px;
}
  
.learn-more-button:hover span:after {
    opacity: 1;
    right: 0;
}
