.content {
    display: none;
    padding: 0;
}

.displayBox_cont .box_cont>a {
    max-width: 250px;
}

.displayBox_cont .displayBox {
    min-width: 15% !important;
    padding: 20px 0 0 0 !important;
    /* cursor: default !important;
    pointer-events: none; */
}

.displayBox_cont .displayBox::after {
    display: none;
}

.displayBox_cont>.title, .traits_cont>.title {
    text-shadow: 1px 0 #000;
}

/* traits */

.traits_cont {
    padding: 20px;
}

.traits>div {
    margin-bottom: 20px;
    text-align: center;
    /*  */
    margin-bottom: 20px;
    text-align: left;
    margin: auto;
    width: 360px;
    display: inline-block;
}

.traits_cont>.title {
    padding: 30px 0 30px 0;
    font-size: 32px;
    text-align: center;
    letter-spacing: 4px;
}

.traits>div>* {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
}

.traits img {
    margin-right: 20px;
    width: 70px;
}

.traits h2 {
    font-size: 18px;
}

.traits p {
    font-size: 14px;
}

/* contact */

.contact_section {
    position: relative;
    background: #2bace2;
    height: 200px;
    overflow: hidden;
    box-shadow: 0 0 3px #000 inset;
}

.contact_section a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border: thin solid #1a1e32;
    background: #1a1e32c9;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1);
    transition: .3s;
}

.contact_section a:hover {
    border-radius: 50px;
    background: #1a1e32;
    color: #FFF;
}

.contact_section .bubbles {
    height: 100%;
}

.contact_section .bubbles>div {
    position: absolute;
    border-radius: 50%;
    box-shadow: -3px 4px 3px #fff inset, 1px -1px 8px #FFF inset;
    opacity: .2;
}

.contact_section .bubbles>div:nth-child(even) {
    animation: bubble_even_anim 7s ease-in infinite;
}

.contact_section .bubbles>div:nth-child(odd) {
    animation: bubble_odd_anim 5s ease-in infinite;
}

@keyframes bubble_even_anim {
    0% {
        bottom: -20px;
        width: 20px;
        height: 20px;
    }
    50% {
        width: 40px;
        height: 40px;
    }
    100% {
        bottom: calc(100% - 5px);
        width: 40px;
        height: 40px;
    }
    0%, 40%, 80% {
        transform: translateX(0);
    }
    20%, 60%, 100% {
        transform: translateX(10px);
    }
}

@keyframes bubble_odd_anim {
    0% {
        bottom: -15px;
        width: 15px;
        height: 15px;
    }
    50% {
        width: 25px;
        height: 25px;
    }
    100% {
        bottom: calc(100% - 5px);
        width: 25px;
        height: 25px;
    }
    0%, 40%, 80% {
        transform: translateX(10px);
    }
    20%, 60%, 100% {
        transform: translateX(0);
    }
}

@media only screen and (max-width: 768px) {
    .traits>div {
        display: flex;
        align-items: center;
        width: 100%;
        margin-bottom: 20px;
    }
    .traits_cont>.title {
        font-size: 26px;
    }
    .traits h2 {
        font-size: 20px;
    }
    .contact_section a {
        font-size: 18px;
    }
}