.main-nav {
    background-color: black;
}

.navbar-burger {
    color: white;
}

.line {
    color: white;
}

.brand {
    color: white;
    font-size: 1.5rem;
}

.brand-icon {
    color: white;
    font-size: 2rem;
}

.navbar-menu {
    background-color: black;
}

.intro-hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    height: 100vh;
}

.content-container {
    width: 50%
}

.profile-img {
    width: 25rem;
    border-radius: 35px;
}

canvas {
    display: block;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    background: black;
}

.projects-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background: white;
    /* height: 100vh; */
}

.wave {
    position: absolute;
    height: 70px;
    width: 100%;
    background: white;
    bottom: 0;
}

.wave::before,
.wave::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100% 50%;
}

.wave::before {
    width: 55%;
    height: 109%;
    background-color: black;
    right: -1.5%;
    top: 60%;
}

.wave::after {
    width: 55%;
    height: 100%;
    background-color: white;
    left: -1.5%;
    top: 40%;
}

#footer {
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
}

.projects-title {
    margin-top: 2rem;
}

.project-link {
    color: black;
}

.project-link:hover {
    color: blue;
}

.project-container {
    margin-bottom: 5rem;
    width: 80vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.project-img {
    width: 35vw;
}

.project-description {
    width: 35vw;
}

.project-img {
    position: relative;
    width: 50%;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: black;
}

.project-img:hover .overlay {
    opacity: .8;
}

.overlay-text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

#contact-info {
    color: white;
    margin-top: 5rem;
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#contact-info a {
    color: white;
}

.social-icons {
    margin-top: 1rem;
    font-size: 2rem;
}

@media only screen and (min-width: 1024px) {
    .from-left {
        transform: translateX(-50%);
    }
    .from-right {
        transform: translateX(50%);
    }
    .from-left,
    .from-right {
        transition: opacity 250ms ease-in, transform 400ms ease-in;
        opacity: 0;
    }
    .from-left.appear,
    .from-right.appear {
        transform: translateX(0);
        opacity: 1;
    }
}

@media only screen and (max-width: 1024px) {
    .intro-hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
    }
    .content-container {
        width: 90%;
        margin-bottom: 1rem;
    }
    .project-container {
        margin: 1rem;
        display: flex;
        flex-direction: column;
    }
    .reverse {
        flex-direction: column-reverse;
    }
    .project-img {
        width: 90vw;
    }
    .project-description {
        width: 90vw;
    }
    .last-project {
        margin-bottom: 5rem;
    }
    .from-left,
    .from-right {
        transition: opacity 250ms ease-in;
        opacity: 0;
    }
    .from-left.appear,
    .from-right.appear {
        opacity: 1;
    }
}