* {
    border: 0;
    margin: 0;
    box-sizing: border-box;

}

body {
    background-color: black;
    color: white;
}

.header {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(image/header-image.png);
    background-size: cover;
    position: relative;
}

.logo {
    width: 150px;
    cursor: pointer;
}

nav {
    display: flex;
    align-items: center;

    justify-content: space-between;
    padding: 10px 20px;
}

nav button {
    margin: 10px;
    border: 0;
    padding: 10px;
    background-color: orangered;
    color: white;
    outline: 0;
    cursor: pointer;
    border-radius: 4px;

}

.language {
    background-color: transparent;
    color: white;
    border: 1px white solid;

}

.language img {
    width: 10px;
    margin-left: 7px;
}

.content {
    position: absolute;
    top: 40%;
    left: 35%;
}

.content h1 {
    font-size: 60px;
    font-weight: 600;
    max-width: 600px;
}

.content h3,
p {
    margin-top: 10px;
}

.signup {
    overflow: hidden;
    margin-top: 30px;
}

.signup input {
    width: 400px;
    padding: 10px;
    outline: 0;
    margin: 0;
}

.signup button {
    width: 100px;
    padding: 10px;
    background-color: orangered;
    color: white;
    cursor: pointer;
}

.features {
    font-size: 22px;
    padding: 30px 12%;
    margin-bottom: 2px solid grey;
}

.row {
    display: flex;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px 0;
    margin-bottom: 2px solid grey;
}

.text {
    flex-basis: 45%;

}

.image {
    flex-basis: 50%;
}

.image img {
    width: 90%;
}

.text h2 {
    margin-bottom: 30px;
    font-size: 50px;
}

.footer {
    border-top: 4px gainsboro solid;
    padding: 50px 15% 10px;
}
.footer h2{
    font-weight: 700;
    font-size: 18px;
    color: bisque;
}
.footer .text{
    flex-basis: 25%;
    flex-grow: 1;
    margin-bottom: 20px;
}
.footer .text a{
    margin-bottom: 20px;
    color: grey;
    display: block;
}