* {
    margin: 0;
    padding: 0;
}

.main {
    display: flex;
    justify-content: center;
}

body{
    background: url('/../images/background.jpg');
    font-family: 'Open Sans';
    height: 100%;
}

.welcome-header {
    height: 100px;
    width: 100%;
}

.menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.menu-items{
    display: flex;
    flex-direction: row;
}
.menu-items li{
    list-style: none;
    margin: 10px;
}

.vue-main{
    display:flex;
    flex-direction: row;
    height: 80vh;
}

.entry-banner{
    height: auto;
    width: 100%;
}

.entry-text-block{
    width: 900px;
}

.entry-text-block > p{
    text-align: justify;
}
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #f2f5f7;
    border-top: 4px solid #1e518f;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 999;
}

.footer-label {
    background-color: #ccff00;
    padding: 4px 12px;
    font-weight: bold;
    font-size: 14px;
}




