* {
    margin: 0;
    padding: 0;
}

.main {
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.5) 50%), url(background_image.jpg);
    background-position: center;
    background-size: cover;
    height: 109vh;
}

body {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.navbar {
    width: 1200px;
    height: 75px;
    margin: auto;
}

.icon {
    width: 275px;
    float: left;
    height: 70px;
}

ul{
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
}
ul li{
    list-style: none;
    margin-left: 33px;
    margin-top: 100px;
    font-size: 14px;
}
ul li a{
    text-decoration: none;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: bold;
    transition: 0.4s ease-in-out;
}
ul li a:hover{
    color: #ff7200
}

.servers {
    background-color: #191919;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    border-top: 3px solid #333;
}

footer {
    background-color: #191919;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    border-top: 3px solid #333;
}