.vocabCategory {
    font-family: "Vollkorn SC";
    font-size: 1.5em;
    background-color: orange;
    width: 100%;
}



.activityLink {
    font-size: 1.1em;
    padding-left: 20px;
    text-align: left;
    transition: 0.3s;
    font-family: Nunito;
}

.activityLink:hover {
    cursor: pointer;
    background-color: #CCCC00; 
}

a {
    display: block;
    width: 100%;
    height: 100%;
    color: unset;
    text-decoration: unset;
}


/*Section 1*/
.introScreen {
    background-color: #b0c4de;
    display: flex;
    height: 100vh;
    width: 100%;
    align-items: center;
}

.bodyContainer {
    margin: 0 auto;
    width: 100%;
    max-width: 1000px;
}

.languageOptions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.langButton {
    margin: 10px;
    border-radius: 5px;
    background-color: steelblue;
    cursor: pointer;
    transition: 0.3s;     
}

.langButton:hover {
    background-color: #cc5500;
    transform: translateY(-1px);
    box-shadow: 0px 1px 5px rgb(17, 17, 17);
}

.language {
    border-radius: 5px;
    font-family: "Vollkorn SC";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
    min-width: 200px;
    min-height: 60px;
    border-radius: 5px 5px 0px 0px;
    transition: background-color 0.3s;
    font-size: 2em;

    user-select: none;
    -webkit-user-drag: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

#opener {
    font-family: Nunito;
    width: 100%;
    text-align: center;
    width: inherit;
    visibility: visible;
    font-size: 3em;
}

.options {
    margin: 0 auto;
    background-color: yellow;
    text-align: center;
    height: 0px;
    overflow: hidden;
    transition: all 0.5s;
    visibility: hidden;
    position:absolute;
    min-width: 200px;
    border-radius: 0px 0px 5px 5px;
}


@media only screen and (max-width: 600px) {

    .languageOptions {
        width: 80%;
        margin: 0 auto;
    }
}