@font-face {
    font-family: 'azonixregular';
    src: url('font/azonix-webfont.woff2') format('woff2'),
    url('font/azonix-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
body, html {
    font-family: azonixregular;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(225,255,226,1) 51%, rgba(255,255,255,1) 100%);
    height: 100%;
    margin: 0;
    padding: 0;
   }
.welcome {
    text-align: center;
}
.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}
.bar {

    display: flex;
    justify-content: space-evenly;
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 80%;



}
.menuitem {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #90C337f5;
    border: none;

    color: white;
    padding: 12px 28px;
    font-size: 1.5em;
    width: 100%;
}
.menuitem:hover {
    background-color: #698D2B;
}
.middlebar {
    display: flex;
    justify-content: center;
    height: 100%;
    width: 80%;
}
h1 {
    text-shadow: 2px 2px lightgrey;
    text-align: center;
    background: -webkit-linear-gradient(#555, #AAA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.textbody {
    background-color: white;
    height: 80%;
    margin: 20px;
    color: grey;
    text-align: center;
    width: 100%;

    font-size: 16px;

}
.sidebuttons {
    display: flex;
    flex-direction: column;
    width: 50%;
    background-image: url("images/greenrays.png");
    background-size: cover;
}
.myButton {
    box-shadow:inset 0px 1px 0px 0px #d9fbbe;
    background:linear-gradient(to bottom, #b8e357 5%, #90C337f5 100%);
    background-color:#b8e356;
    border-radius:6px;
    border:1px solid #83c41a;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family:Arial;
    font-size:15px;
    font-weight:bold;
    padding:6px 24px;
    text-decoration:none;
    text-shadow:0px 1px 0px #86ae47;
}
.myButton:hover {
    background:linear-gradient(to bottom, #90C337f0 5%, #b8e357 100%);
    background-color:#a5cc52;
}
.myButton:active {
    position:relative;
    top:1px;
}

