/* Media */
video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
#video7, #video8 {
    display: none;
}
.hover-bubble img {
    width: 100%;
}

/* Project Bubbles */
.your-website-button {
    padding: 20px !important;
    font-size: 20px !important;
    background-color: green;
}
.bubble-button {
    font-size:13px;
    padding: 5px 10px;
    margin: 5px;
    align-items: end;
    display: flex;
    gap: 5px;
}
.projects-container {
    display: flex;
    width: 100%;
    margin: 50px 0;
    justify-content: center;
    flex-wrap: wrap;
    gap:50px;
}
.project-container {
    flex-basis: 100%;
    margin: 25px 0;
    align-items: center;
    display: flex;
    flex-direction: column;
}
.project-title {
    font-size:4vw;
    margin-top:10px;
    text-align: center;
    text-align-last: center;
}
.project-tools {
    margin-top: 10px;
    display: flex;
    width: 75%;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.project-tools img {
    height: 40px;
}
#extra-parts {
    display: flex;
}

/* Tablet and Up - BREAKPOINT */
@media only screen and (min-width: 768px) and (min-device-width: 768px){
    /* Project Bubbles */
    .project-container {
        flex-basis: 45%;
    }
    .hover-info p {
        font-size: 12px;
        text-align-last: center;
    }
    .project-title {
        font-size:3vw;
    }
}

/* Desktop and Up - BREAKPOINT */
@media only screen and (min-width: 1100px) and (min-device-width: 1100px){
    /* Project Bubbles */
    .project-title {
        font-size:2vw;
    }
    .hover-info p {
        font-size: 20px;
    }
    .bubble-button {
        font-size:15px;
        padding: 10px;
        margin: 5px;
    }
}

/* Large Desktop and Up - BREAKPOINT */
@media only screen and (min-width: 1400px) and (min-device-width: 1400px){
    /* Project Bubbles */
    .project-container {
        flex-basis: 30%;
    }
    .hover-info p {
        font-size: 15px;
    }
}