* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: helvetica, sans-serif;
  color: white;
  font-weight: normal;
  font-size: 20px;
  line-height: 1.3em;
  list-style-type: none;
}

html,
body {
  background: #060606;
}
.container {
  text-align: center;
  height: 100vh;
  width: 100vw;
  /* border: 1px solid red; */
}

.text {
  font-size: 48px;
  color: #333;
}
.see-more {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 1px solid;
  position: fixed;
  cursor: pointer;
  right: 20px;
  top: 10px;
  z-index: 100;
  text-decoration: none;
  color: wheat;
  background: red;
}
