/*Whole thing*/
/*Intro stuff*/
#logoLink {
    cursor: pointer;
}

.intro {
    padding: 1rem 1rem;
}

.container .intro {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.container .intro .left,
.container .intro .right {
    width: 50%;
}

/*Left side*/
.container .intro .left {
    align-self: center;
    text-align: justify;
    padding: 1vw 8vw;
    min-width: 300px;
}

main .container .intro .left p {
    margin-bottom: 1rem;
}

main .container .intro .left .connect {
    display: block;
    margin: 1em auto;
    background-color: white;
    color: black;
    border: 3px solid black;
    border-radius: 0;
    padding: 0.5em 1em;
    font-size: 1.1rem;
    cursor: pointer;
}

main .intro .left .connect:hover {
    background-color: black;
    color: white;
    transition: background-color 0.3s, color 0.3s;
}

/*Right side*/
.right {
    align-self: center;
    text-align: center;
}

.right img {
    max-height: 40rem;
    width: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.9);
}

#profileImage {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

/*Separator*/
.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0 0 0;
}

.separator::before,
.separator::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #bbb;
    margin: 0 20px;
}

.separator p {
    font-size: 1.5rem;
    margin: 0 0;
}


/*Features*/
.features .feature-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    min-height: 35rem;
    align-items: center;
    margin: 1rem 0;
}

.features .feature-row::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ddd;
    margin: 1rem 5rem;
}

.feature-row .ft-text,
.feature-row .ft-image {
    flex: 1 1 50%;
    min-width: 300px;
}

.features .feature-row .ft-text {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    /* or remove this line entirely */
    justify-content: center;
    /* push content to the top */
    text-align: justify;
    padding: 0rem 8rem;
    min-width: 300px;
}

.ft-text h3 {
    text-align: center;
    margin-bottom: 0.75rem;
}

.ft-text p {
    margin-bottom: 1rem;
}

.ft-text button {
    display: block;
    margin: 0.5rem auto;
    background-color: white;
    color: black;
    border: 3px solid black;
    border-radius: 0;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    cursor: pointer;
}

.ft-text button:hover {
    background-color: black;
    color: white;
    transition: background-color 0.3s, color 0.3s;
}

/* .features .feature-row .ft-image {
    display: flex;
    align-self: center;
    justify-content: center;
}*/

.ft-image {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #fff;
}

.ft-image img {
    display: block;
    max-height: 40rem;
}


#enteroImage {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

#thesisImage {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

#buwenImage {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.buwen-alert {
  position: absolute;
  background: #333;
  color: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-family: sans-serif;
  font-size: 0.75rem;
  max-width: 15rem;
  line-height: 1.4;
  opacity: 0;
  animation: fadeInOut 3s ease forwards;
  pointer-events: none; /* So it doesn't block clicks */
}

@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(-5px); }
  10% { opacity: 1; transform: translateY(0); }
  90% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-5px); }
}


/*Timeline*/