/* style.css */

* {
    margin: 0px;
    padding: 0px;
}

html,
body {
    height: 100%;
}

body {
    background-color: #fff;
    font-family: Helvetica, sans-serif;
    color: #333;
}

#header {
    background-image: url(../img/bg_webb.jpg);
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#header #info-text {
    background-color: rgba(255,255,255,0.7);
    margin: 20px;
    padding: 20px;
    border-radius: 5px;
    text-align: center;

}

#header #info-text #logo {
    margin-bottom: 20px;
}

#header #info-text p {
    font-size: 1.2em;
    /*text-shadow: 4px 4px 5px #888888;*/
    padding: 15px 15px;
}

#header #info-text a {
    display: inline-block;
    margin: 10;
    margin-top: 30px;
    padding: 15px 15px;
    font-size: 1.2em;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
}

#header #info-text a:hover {
    text-decoration: none;
    color: #919191;
    background: #333;
}

#header #info-text a:active {
    text-decoration: none;
    background: #111;
}

#header #info-text a:focus {
    text-decoration: none;
    outline: none;
}