﻿/* ALGEMEEN */
body {
    margin:0;
    padding:0;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif
}


/* HOME PAGE */
.homebox {
    display:flex;
    flex-direction:column;
    width: 100%; 
    height:100vh;
    background-color:yellowgreen;
    justify-content:center;
    align-items:center;
}

.dealcircle {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 250px;
    height: 250px;
    border: 1px solid red;
    background-color: red;
    color: white;
    font-size: 3em;
    font-weight:bold;
    text-align:center;
}

.homebox h1 {
    font-size: 2.6em;
    color:white;
    font-weight:bold;
}

.homebox p {
    font-size: 1.6em;
    font-weight: bold;
}

.homebox a, .homebox:visited {
    font-size: 1.6em;
    font-weight: bold;
    color:white;
}

.homebox a:hover {
    color: darkred;
}


/* HEADER AND MENU */
.mnu-body {
    background-color:white;
    height: 50px;
    margin-top: 10px;
    vertical-align:middle;
    background-color: red;
}

/* VOUCHER INFO-PAGE */
.voucher-body {
    background-color: #ededed;
    height: 100vh;
    width: 100%;
}

.voucher-info {
    padding: 10px;
}

.voucher-info .h-milieu {
    color: darkgreen;
}


/* FOOTER */
.footer {
    background-color: black;
    color: white;
}
