* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans';
  font-size: 16px;
}

header {
  width: 100%;
  height: 95vh;
  background-image: url(../img/bg.png);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  color: white;
  text-align: center;
}

.logo {
  margin-left: 10px;
  width: 200px;
  border-radius: 50px;
}

.title {
  margin-top: 150px;
}

.title-h1 {
  font-size: 100px;
}

.subtitle {
  font-size: 42px;
  font-weight: 300px;
  margin-bottom: 32px;
}

.mod-bottom {
  z-index: 10;
  position: absolute;
  bottom: 0;
  left: 0;
  border-width: 0 0 35vh 100vw;
  border-style: solid;
  border-color: transparent transparent transparent rgb(233, 210, 217);
}

.footer {
  background: black;
  color: white;
  font-size: 20px;
  padding: 13px 0;
  height: 5vh;
}

p{
  text-align: center;
}

a {
  text-decoration: none;
  color: white;
}