.programmingLanguagesSlide {
    background: black;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: space-around;
    align-content: space-around;
    padding: 400px 10px 200px;
    margin: 0;
    min-height: 200vh !important;
}

.textBoxProgrammingLanguages {
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0 10px;
    text-align: left;
}

.textBoxProgrammingLanguages * {
    color: white;
    font-size: 48px;
    font-family: "Courier New", serif;
}

.typeWriter {
    display: inline-block;

    @media (min-width: 1401px) {
        white-space: nowrap;
        overflow: hidden;
    }
}

@keyframes cursorBlink {
    0% {
        opacity: 0;
    }
}

.cursorBlink  {
    display: inline-block;
    animation: cursorBlink 1.5s steps(2) infinite;
}

.programmingLanguagesContainer {
    align-content: center;
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /*flex: 1;*/
    justify-content: center;
    justify-items: center;
}

.programmingLanguageLogo {
    border-radius: 10px;
    @media (min-width: 1000px) {
        margin: 50px;
    }
    @media (max-width: 999px) {
        margin: 10px;
    }
}

.programmingLanguageLogo img {
    @media (min-width: 1000px) {
        max-height: 200px;
        max-width: 200px;
    }
    @media (max-width: 999px) {
        max-height: 100px;
        max-width: 100px;
    }
}
