.tabs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.tab-label {
    width: 10%;
    box-sizing: border-box;
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 1rem;
    cursor: pointer;
    background-color: #8B9EB7;
    font-weight: bold;
    transition: background ease 0.3s;
}

.tabs .tab {
    order: 9;
    flex-grow: 1;
    width: 100%;
    height: 100%;
    display: none;
    padding: 1rem;
    background: #fff;
    padding: 10px 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.tabs input[type="radio"] {
    display: none;
}

.tabs input[type="radio"]:checked+label {
    background: #fff;
    z-index: 100;
}

.tabs input[type="radio"]:hover+label {
    background: #fff;
    z-index: 99;
}

.tabs input[type="radio"]:checked+label+.tab {
    display: block;
}

body {
    background: #8B9EB7;
    box-sizing: border-box;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    font-size: 110%;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.input_label {
    width: 100%;
    display: flex;
    align-items: center;
    font-weight: bold;
    padding: 0.5rem 1rem 0.5rem 0rem;
    flex-direction: row;
}

.wrapper {
    max-width: 90%;
    margin: 3vh auto;
    min-height: calc(94vh - 42px);
}


/* BREAK */

form {
    display: flex;
    flex-wrap: wrap
}

form>input {
    flex: 1 1 10ch;
    margin: .5rem
}

input {
    margin-left: auto;
    width: 80%;
    border: none;
    background: hsl(0, 0%, 93%);
    border-radius: .25rem;
    padding: .75rem 1rem
}


/* BREAK */

h1 {
    color: #ffffff;
    font-family: 'Raleway', sans-serif;
    font-size: min(62px, 9vw);
    font-weight: 800;
    line-height: 72px;
    margin: 0 auto 3vh;
    text-align: center;
    text-transform: uppercase;
    width: 80%;
    border: solid 2px white;
    padding: 15px;
}

footer {
    background-color: rgba(0, 0, 0, 0.2);
    width: 100%;
    text-align: center;
    padding-top: 5px;
    padding-bottom: 5px;
}

.footer * {
    text-decoration: none;
    padding-top: 5px;
    padding-bottom: 5px;
    display: inline;
    top: 0;
}

#profile {
    vertical-align: middle;
}

#name {
    vertical-align: middle;
    display: inline;
    padding-left: 10px;
    color: #e5e5e5;
}

a {
    color: #fff;
    text-decoration: none;
    font-weight: normal;
}

table {
    width: 100%;
}