html, body {
   margin: 0; padding: 0;
}

body {
    font-family: Roboto;
    background-size: cover;
    background-image: url("gui/suma.jpg");
}

* { box-sizing: border-box; }

#bg-shade {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-color: rgba(255, 255, 255, 0.7);
   z-index: -1;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    text-align: center;
    overflow: visible;
    background-color: #faebeb;
    box-shadow: 0 0 15px gray;
}

#head-wrapper {
   width: 960px;
   margin: auto;
   text-align: left;
}

#head-wrapper a { float: right; display: inline-block; margin: 20px; }

#head-wrapper img {
    height: 250px;
    width: auto;
    margin-top: 10px;
}

p {
    margin: 350px auto 0 auto;
    color: maroon;
    font-size: 48px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.7);
    width: 960px;
    border-radius: 30px;
}