/* Name: CSS3 Dropdown menu index
  Created: 3-29-16
  Description: using font and all browsers
  Version: 1.0
  Author: The Red Pony
  Author URL: http://www.gomyson.com
  Reason: To everyone learning Navajo...
  Support from: http://meyerweb.com/eric/tools/css/reset/v2.0 | 20110126,  License: none (public domain)*/

.contentbox2 {
    /* Must have a width less than 100% */
    margin-left: auto;
    /* Centers horizontally */
    margin-right: auto;
    /* Centers horizontally */
    /* Shorthand for horizontal centering with margin: 0 auto; */
}

.box .text {
    font-size: .6rem;
}

p {
    font-size: 12px;
    text-align: center;
}

.box {
    font-weight: bold;
    transition: all 0.5s;
    border-radius: 5px;
    line-height: 20px;
    color: #222222;
    background: #FAEAAA;
    width: 100px;
    text-align: center;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, .5), 0px 0px 0px 1px rgba(0, 0, 0, .1);
    display: inline-block;
    margin: 5px;
    font-family: Honovi;
}

.textbox {
    font-weight: bold;
    /* -webkit-transition: all .5s; */
    transition: all 0.5s;
    border-radius: 5px;
    line-height: 20px;
    color: #222222;
    background: #FAEAAA;
    width: 300px;
    text-align: center;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, .5), 0px 0px 0px 1px rgba(0, 0, 0, .1);
    display: inline-block;
    margin: 5px;
}

h1 {
    text-align: center;
}

.box:hover {
    color: white;
    background: #385ae5;
    cursor: pointer;
}

#mytext1 {
    font-family: 'Honovi';
    font-size: 40px;
    color: black;
}

#mytext2 {
    font-size: 20px;
    color: black;
}

footer p {
    font-size: 16px;
}

@media only screen and (max-width: 650px) {
    .container {
        flex-direction: column;
    }
    h1 {
        font-size: 20px;
    }
    .flexWrap {
        flex-wrap: wrap;
    }
    .contentbox {
        box-sizing: border-box;
        padding: 1px;
        width: 312px;
        margin: 0 auto;
    }
}