@font-face {
    font-family: 'Nice Dream Come True';
    src: url('../fonts/Dreams.ttf')
}

* {
    box-sizing: border-box;
}

body {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;

    min-height: 98vh;
    flex-direction: column;
    font-family: sans-serif;
    background: gray;
}

a {color: aqua;}
a:visited {color: lightskyblue;}
a:hover {color: lightgreen;}
a:focus {color: ;}
a:active {color: ;}

em  {                       /* emphasis in orange*/
    color: #e07a05;
}

banner {
    color: #606060;
    background: linear-gradient(lightgray, #606060);
    display: flex;
    height: 15vh;
    width: 100%;
}

main {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.logo {
    height: 100%;
    margin-left: 7%;
    align-content: center;
}

.logo img {
    padding: 8%;
    height: inherit;
    align-content: center;
}

.message {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    margin-left: 4%;
}

.message coName{
    display: flex;
    padding-bottom: 1.2%;
    color: #606060;
    font-family: sans-serif;
    font-weight: bold;
    font-size: 5vh;
}

.message motto {
    display: flex;
    padding-bottom: 1.2%;
    font-family: 'Nice Dream Come True', Fallback, sans-serif;
    color: lightgray;
    font-weight: bold;
    font-size: 2.5vh;
}

label {
    color: lightsteelblue;
    background: gray; 
    border: 1px solid darkgray; /* #a0a0a0; */
    padding: .7em 1em;
    border-bottom-color: #606060;
    cursor: pointer;
    z-index: 1;
    margin-left: -1px;
}

label:first-of-type {
    margin-left: 0;
}

content {
    width: 100%;
    color: wheat;
    margin-top: -1px;
    padding: 1em;
    border: 1px solid #606060; /*gray; */
    border-top: 1px solid #606060;
    -webkit-order: 1;
    order: 1;
}

input[type=radio], content {
    display: none;
}

input[type=radio]:checked + label {
    color: antiquewhite;
    background: #606060;
    border: 1px solid #606060;
    border-top: 1px solid gray;
}

input[type=radio]:checked + label + content {
    display: block;
    background: #606060;
}
