@import url("https://fonts.googleapis.com/css2?family=Rubik&display=swap");
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}

#windowWidthDiv,
#windowHeightDiv {
  position: fixed;
  left: 0;
  background-color: #f9f9f9;
  padding: 10px;
  border: 1px solid #ccc;
  z-index: 1000000;
  color: #000;
  display: none;
}

#windowWidthDiv {
  top: 0;
}

#windowHeightDiv {
  bottom: 0;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
  background-color: #ffb067;
  font-family: "Rubik", sans-serif;
}

header {
  height: 60px;
  font-size: 1.2rem;
  top: 0;
  display: flex;
  justify-content: space-between;
  position: fixed;
  background-color: #000;
  color: #f1f1f1;
  padding: 10px;
  z-index: 1000;
  width: 100vw;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}



/****************************** header ******************************/

h1 {
  color: white;
  font-weight: 600;
  text-align: center;
  font-size: 2rem;
  padding: 100px 0 50px;
}

.logo {
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 500;
}


.logo a:hover {
  color: white;
  transition: color 0.5s;
}

/*************************   992    *******************************/
@media (min-width: 992px) {
  h1 {
    font-size: 3rem;
    padding: 100px 0;
  }
}
