@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@1,300;1,400;1,600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}

body {
  color: #201e1e;
}

.top {
  width: 100%;
  height: auto;
  padding: 10px;
  background-color: #201e1e;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top a {
  color: yellow;
  text-decoration: none;
}

.top a:hover {
  text-decoration: none;
  font-weight: bold;
}

.logo {
  width: 100%;
  height: auto;
  padding: 10px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}


.info{
    
    width: 100%;
      height: auto;
      
      padding: 20px;
      display: flex;
      flex-direction:column;
      justify-content: center;
      align-items: center;
      font-weight:bold;
}

.badge{
     width: auto;
      height: auto;
      
      padding: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight:bold;
      background-color:yellow;
      color:#000;
      border-radius:7px;
}


.pagewrap {
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page1 {
  width: 100%;
  height: auto;
  min-height: 50vh;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #201e1e;
  color: #fff;
}

.page2 {
  width: 100%;
  height: auto;
  min-height: 50vh;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: yellow;
  color: #201e1e;
}

input {
  width: 80%;
  height: 30px;
  border: none;
  outline: none;
  padding: 7px;
  border-radius: 7px;
}

.btn1 {
  width: auto;
  min-width: 200px;
  height: 40px;
  background-color: yellow;
  color: #201e1e;
  border-radius: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin-top: 15px;
  border: none;
  outline: none;
  font-size: 20px;
}

.btn1:hover {
  background-color: #fff;
  color: #201e1e;
}

.btn2 {
  width: auto;
  min-width: 200px;
  height: 40px;
  background-color: #201e1e;
  color: yellow;
  border-radius: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  margin-top: 15px;
  border: none;
  outline: none;
  font-size: 20px;
}

.btn2:hover {
  background-color: #fff;
  color: #201e1e;
}

@media (max-width: 768px) {
  .pagewrap {
    flex-direction: column;
  }
}
