body {
    background-image: url('img/bg-jurassic-world.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    font-family: 'Open Sans';
    color: white;
}

.wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.75);
}

.logo {
    height: 50px;
}

.menu {
    color: #d8d5b6;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
}

.content p {
    margin: 0;
    font-size: 28px;
    font-weight: 500;
}

.content h1 {
    margin: 0px;
    font-size: 80px;
}

.newsletter {
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    width: 25%;
    background-color: rgba(186, 192, 104, 0.75);
    font-size: 16px;
    padding: 30px;
}

input[type=text],
input[type=email] {
    margin: 10px 0;
    padding: 10px;
    border: none;
    width: 90%;
    font-size: 16px;
}

.tilmeld {
    font-size: 16px;
    margin: 10px;
    padding: 10px 25px;
    border: none;
    width: 94%;
    background-color: #41351d;
    color: white;
    cursor: pointer;
}

.footer {
    display: flex;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.75);
}