.skill_container {
    position: relative;
    width: 100%;
    height: calc(100% - 42.5px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.skilldrop1 {
    display: inline-block;
    position: relative;
    outline: 2px outset white;
}

.skilldrop2 {
    display: inline-block;
    position: relative;
    margin-left: 4px;
    outline: 2px outset white;
}

.skillbtn1 {
    background-color: #ffcb7b; 
    width: 131.25px;
    height: 75px;
    border: none;
    cursor: pointer;
    font-size: 22.5px;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 65%;
}

.skillbtn1:hover {background-color: darkgoldenrod;}

.skillbtn2_empty {
    background-color: #ffcb7b;
    width: 131.25px;
    height: 75px;
    border: none;
    font-size: 22.5px;
    color: rgba(0,0,0,0.5);
}

.skillbtn2 {
    color: rgba(0,0,0);
    cursor: pointer;
    background-image: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 65%;
}

.skillbtn2:hover {background-color: darkgoldenrod;}

.skill-content {
    display: none;
    position: absolute;
    margin-top: 7.5px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    outline: 2px groove brown;
    z-index: 1;
    background-color: #ffcb7b;
    height: 165px;
}

.skill-content-height {
    height: 102.5px;
}

.noskill-content_div {
    position: relative;
    cursor: pointer;
    width: 218.75px;
    height: 37.5px;
}

.noskill-content_div:hover {background-color: #FFEBCD;}

.skill-content_div {
    position: relative;
    cursor: pointer;
    width: 218.75px;
    height: 62.5px;
}

.skill-content_div:hover {background-color: #FFEBCD;}

.noskill {
    display: flex;
    align-items: center;
    justify-content: center;;
    width: 100%;
    height: 100%;
    font-size: 22.5px;
}

.skillpic {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0%;
    width: 60px;
    height: 100%;
}

.skillpic img {
    width: 65%;
    height: 65%;
    object-fit: contain;
}

.skilltext1 {
    display: flex;
    align-items: center;
    position: absolute;
    left: 60px;
    top: 0%;
    height: 50%;
}

.skilltext1 p {
    font-size: 20px;
    margin: 0;
}

.skilltext2 {
    display: flex;
    align-items: center;
    position: absolute;
    left: 60px;
    top: 50%;
    height: 50%;
}

.skilltext2 p {
    font-size: 15px;
    margin: 0;
}

.show {display:block;}


@media (max-width: 1012.5px) {
    .skill_container {
        height: calc(100% - 30px);
    } .skillbtn1, .skillbtn2_empty {
        width: 100px;
        height: 50px;
        font-size: 20px;
    } .skill-content {
        margin-top: 4px;
    } .noskill {
        font-size: 20px;
    } #skill2.skill-content {
        right: -14.5%;
    }
}

