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

.research {
    display: flex;
    justify-content: space-between;
    height: 22em;
}

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

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

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

.desc-and-skills {
    display: flex;
    flex-direction: column;
}

.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;
}

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

.carousel .slides {
    display: flex;
    width: 75%;
    overflow: hidden;
}

.carousel .slides img {
    display: none;
}

.carousel .slides img.active {
    display: inline-block;
    width: 100%;
}

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

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

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

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

.buttons {
    display: flex;
    justify-content: center;
    align-content: center;
    margin: 5px 0px 0px 0px;
    width: 75%;
    height: 5%;
}

.gallery-button {
    background-color: rgb(192, 191, 191);
    color: white;
    border: none;
    cursor: pointer;
    flex: .33;
    width: auto;
    height: 5px;
    margin: 0px 3px;
    border-radius: 4px;
}

.gallery-button.active {
    flex: .5;
    background-color: rgb(117, 116, 116);
}

button {
    background-color: #333;
    border: none;
    color: #FFFFFF;
    font-size: 18px;
}

.learn-more-button {
    display: inline-block;
    border-radius: 4px;
    background-color: #333;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 18px;
    padding: 20px 30px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
    outline: none;
    transition: all 1s;
    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;
}

.more-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%
}
