*,
body,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Muli', sans-serif;
    overflow: hidden;
}

.container {
    height: 100vh;
    width: 100vw;
    color: white;
    background-image: url(./promo.jpg);
    background-size: cover;
    background-repeat: no-repeat; 
    background-position: top;
}

.logo-container {
    padding: 30px 10vw;
    height: 190px;
}

.description {
    height: calc(100vh - 190px);
    padding-top: calc(50vh - 250px);
    width: 100vw;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.description p {
    font-weight: normal;
    font-size: 32px;
    line-height: 45px;
}



