*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}
.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4,9,30,0.7),rgba(4,9,30,0.7)),url(Style/background.jpg);
    background-position: center;
    background-size: cover;
    position: relative;
}
.text{
    width: 90%;
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.text h1{
    font-size: 84px;
}
.text p {
    margin: 10px 0 40px;
    font-size: 20px;
    color: #ffffff;
}
.join-button {
    display: inline-block;
    text-decoration: none;
    color:#ffffff;
    border: 1px solid #ffffff;
    padding: 12px 34px;
    font-size: 20px;
    background: transparent;
    position: relative;
    cursor: pointer;
}
.join-button:hover{
    border: 1px solid #EADA17;
    background: #EADA17;
    transition: 1s;
}
.preview {
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
.headline {
    font-size:42px;
    margin-bottom: 50px;
}
.textpreview{
    float: left;
    width: 32%;
    margin-right: 2%;
    padding: 20px;
    box-sizing: border-box;
    background: transparent;
    color: #000000;
    background-color: #756355;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    transition: 0.5s;
    margin-bottom: 20px;
}
.textpreview h2{
    font-size: 28px;
}
.textpreview:hover{
    transform: rotate(0deg) skew(0deg) translate(0, -10px);
}
.textpreview:last-child{
    margin-right: 0;
}
body{
    background-color: #5F534A;
}