*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    overflow-x: hidden;
    height: 100vh;
    overflow: hidden;
    width: 100%;
}

.hero{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    display: block;
    max-width: 1200px;
}

.header{
    display: flex;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    top: 5vh;
    z-index: 1;
}

.logo{
    max-width: 273px;
    width: 100%;
}