/* reset*/

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

body {
  font-family: "Rubik", sans-serif;
}

/* header*/

.header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
}

.logo-header {
  padding-top: 10px;
}

.bullets {
  list-style: none;
  display: flex;
  padding-left: 0;
  padding-top: 10px;
  padding-bottom: 13px;
}

.li-item-blog {
  padding-right: 20px;
}

.links {
  text-decoration: none;
  text-transform: uppercase;
  color: #4a4a4a;
  font-size: 16px;
  padding: 10px;
}

/* main*/

.main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #3cdbc0;
  color: #ffffff;
  text-transform: capitalize;
}

.title {
  font-size: 30px;
  width: 5em;
  text-align: center;
}

/* mediaquerys */

@media all and (min-width: 768px) {
  .header {
    flex-direction: row;
    justify-content: space-between;
  }
  .title {
    font-size: 40px;
  }
  .logo-header {
    padding: 20px 30px;
  }
  .li-item-contact {
    padding-right: 30px;
  }
}
