*{
    font-family: sans-serif;
    font-weight: 100;
    letter-spacing: 7px;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    font-weight: 100;
}
body {
    overflow: hidden;
}
.hero{
    width: 100%;
    height: 100vh;
    background: url('../images/Griechischer-Wein.png') no-repeat center;
    background-size: cover;
}
.hero-wrapper{
    padding: 10px;
    padding-top: 7%;
    color: #DFDFDF;
}
h1.h1-header{
    color: #DFDFDF;
    margin: 0;
    font-size: 40px;
    text-align: center;
}
.big-letter-h1{
    display: inline-block;
}
.big-letter-h1::first-letter{
    font-size: 50px;
}
h3.h3-subheader{
    color: #DFDFDF;
    margin: 5px;
    text-align: center;
}
/*Buttons*/
.hero-buttons{
    display: inline-block;
    position: absolute;
    text-align: center;
    width: 100%;
    margin-top: 15px;
}
h3.h3-subheader{
    font-size: 20px;
}
.big-letter-hsub{
    display: inline-block;
}
.big-letter-hsub::first-letter{
    font-size: 25px;
}
.hero-buttons a.button{
    text-transform: initial;
    letter-spacing: 3px;
    text-decoration: none;
    color: #DFDFDF;
    background: rgba(179, 120, 120, 0.384);
    padding: 13px 20px;
    width: 150px;
    text-align: center;
    display: inline-block;
    margin: 0 6px;
    border-radius: 3px;
    transition: .3s all ease;
    margin-bottom: 10px;
}
.hero-buttons a.button:hover{
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    transform: translateY(-4px);
}
.hero-buttons a.button:active{
    transform: translateY(-1px);
}

/* phones */
@media only screen and (max-width: 600px){
    h1.h1-header span{
       font-size: .8em;
    }
    .dash{
        display: none;
    }
}