@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
}
body {
  overflow: hidden;
}
#container {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#container::before,
#container::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
}
#container::before {
  top: 0;
  background-color: #005bbb;
}
#container::after {
  bottom: 0;
  background-color: #ffd500;
}
#container > h2 {
  color: #fff;

  font-size: 4rem;
  margin-bottom: 30px;
}
#container > h1 {
  color: #464646;
  font-size: 8rem;
  line-height: 10px;
  margin-top: 50px;
}

p{
    color:#000;
    position: absolute;
    bottom:30px;
    font-size:1.5rem;
}