/* ===== NAV ===== */
/* Make links appear on top of one another */
nav {
    flex-flow: column wrap;
    height: auto;
    background: #278AB0;
}

nav div {
    padding: 10px 0;
}

/* ===== ABOUT-ME ===== */
/* Remove the bg image */
#about-me {
    background: #EAEAE0;
    text-align: center;
    /* background: #1C4670;
    background: linear-gradient(150deg, rgba(28, 70, 112, 1) 65%, rgba(29, 198, 64, 0.6) 100%); */
}

#about-me img {
    width: 60%;
    display: initial;
    border-radius: 50%;
    margin-bottom: 30px;
}

#about-me img.is-visible {
    animation: ease-in-right 1s cubic-bezier(0.39, 0.575, 0.565, 1);
}

/* Make the text fit the whole screen */
.general-info {
    width: auto;
    text-align: justify;
    margin: initial;
}

.general-info p {
    line-height: 1.5em;
    font-size: 1em;
}

/* ===== SKILLS ===== */
#skills {
    background: #1C4670 url('media/skills-background.jpg') bottom right / contain no-repeat;
}

/* Don't make skill bar keys appear */
figure {
    flex-flow: column;
}

.skill-levels {
    display: none;
}

.skill-group-label {
    width: 100%;
    height: 10%;
    text-align: center;
    background: initial;
    font-family: 'Oswald', sans-serif;
    color: #1DC690;
    font-size: 1.4em;
    letter-spacing: 1px;
    box-shadow: initial;
    padding: 5px 0;
}

/* ===== PORTFOLIO ===== */
.portfolio-container {
    height: 100vh;
    width: 90vw;
}

.left-picture-block {
    width: 100%;
    height: 30%;
}

.right-block {
    width: 100%;
    height: 50%;
    padding-bottom: 0;
    margin-bottom: 0;
}

.work-description {
    height: 45%;

    line-height: initial;
    font-size: 1em;
}

.work-description em {
    font-size: 1.2em;
}

.carousel-cell img {
    margin: auto;
    border-radius: 50%;
    height: 80px;
    width: 80px;
}

.overlay-carousel .carousel-cell img {
    border-radius: 0;
    height: auto;
    width: 100vw;
}

/* ===== TIMELINE ===== */
#timeline table {
    width: 90%;
}

.year-cell {
    padding: 0 10px;
}

.year-cell div span {
    font-size: 1.4em;
}

/* ===== CONTACT ===== */
.contact-form {
    width: 70%;
}

.contact-form form {
    height: auto;
}

.contact-form button {
    width: 100%;
}