* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: #000;

}

section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 100px;
}

section header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}
section header .logo {
    position: relative;
    font-size: 1.5em;
    color: #fff;
    font-weight: 700;text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;

}

section header .toggle {
    position: relative;
    width: 40px;
    height: 40px;
    background: url(wht-menu.png);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    filter: brightness(50%);
}

.birds {
   position: absolute; 
   bottom: 0;
   right: 100px;
   max-height: 80%;
   z-index: 100;

}

.content {
    position: absolute;
    left: 100px;
    max-width: 600px;
    z-index: 10;
    color: #fff;
    line-height: 1rem;

}

.a {
    color: #fff;
    text-decoration: none;
    font-size: large;
    letter-spacing: 3px;
}

.textBlocks {
    position: absolute;
    bottom: 0;
    display: flex;
}

.textBlocks .block {
    position: relative;
   max-width: 500px;
    height: 100px;
    color: #fff;
    margin-right: 40px;
    letter-spacing: 3px;
}