html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

#background {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    overflow-y: hidden;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: url("images/team.png") no-repeat scroll 0 0 #000;
    background-size: cover;
    backface-visibility: hidden;
}

#container h1 {
    color: white;
}

.header {
    font-family: "Rajdhani", Rajdhani, sans-serif;
    font-size: 4vw;
    color: #fff;
    padding-top: 150px;
    line-height: 1.1;
}

.logo {
    width: 120px;
    height: 115px;
    padding-left: 40px;
    padding-top: 40px;
}

.toogle {
    width: 80px;
    height: 80px;
    float: right;
    padding-right: 60px;
    padding-top: 60px;
}

.button {
    background-color: rgba(255, 255, 255, 0);
    color: white;
    border: 2px solid #e7e7e7;
    padding: 10px 40px 10px 40px;
    font-family: "Rajdhani", Rajdhani, sans-serif;
    font-size: 18px;
    margin-top: 0px;
}

.button:hover,
.button:active,
.button:focus,
.button:visited {
    background-color: rgba(255, 255, 255, .9);
    text-decoration: none;
    border-color: #fff;
    color: #fff;
}

.dropbtn {
    background-color: rgba(255, 255, 255, 0);
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #b3b3b3;
    text-decoration: none;
    color: black;
}

.dropdown:hover .dropdown-content {
    display: block;
    text-decoration: none;
    color: black;
}

.hero-text {
    margin: 0 auto;
    text-align: center;
}

@media only screen and (max-width: 560px) {
    .hero-text {
        padding: 0 50px;
    }
}

@media only screen and (max-width: 480px) {
    .hero-text {
        padding: 0 25px;
    }
}