* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #041b26;
  font-family: "Nunito", sans-serif;
  font-size: 1rem;
  color: white;
  background: linear-gradient( rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2) ),url(../img/bg.gif) no-repeat;
  backdrop-filter: blur(10px);
  background-size: cover;
  background-position: center;
  min-height: 100vh;
}
.logo img{
  width: 100px;
}
main {
  max-width: 1000px;
  margin: auto;
  padding: 0.5rem;
  text-align: center;
}
h1 {
  color: #fff;
  margin-bottom: 0.5rem;
}
#instruction{
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
.instruction_item {
  width: 100%;
}
.instruction_img {
  width: 100%;
  border: 1px solid #30485f;
  border-radius: 5px;
}
.instruction_text{
  text-align: left;
  background-color: #041b26;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 20px;
}
#installBtn{
  margin: 25px 0 0 0;
  height: 40px;
  width: 125px;
  background-color: #7759f3;
  border-radius: 7px;
  color: white;
  transition: 0.1s;
}
#installBtn:hover{
  border: 2px solid white;
  cursor: pointer;
}
#installBtn:focus{
  outline: 0;
}
.warning_text {
  color: #ffeb00;
}
.browser_item{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
#redirectButton{
  background: #21bba1;
  color: #fff;
  height: 40px;
  padding: 0 20px;
  box-sizing: border-box;
  border-radius: 30px;
  outline: none;
  border: none;
}
#redirectButton:hover{
  background: #6fc15a;
  cursor: pointer;
}
#redirectButton:active{
  background: #085160;
  -webkit-box-shadow: inset 0 2px 2px 0 rgba(0, 0, 0, 0.75), inset 0 -2px 2px 0 rgba(54, 113, 125, 0.75);
  box-shadow: inset 0 2px 2px 0 rgba(0, 0, 0, 0.75), inset 0 -2px 2px 0 rgba(54, 113, 125, 0.75);
}


@media only screen and (max-width: 767px) {
  main{
    padding: 1rem;
  }
  #instruction{
    flex-direction: column;
    max-width: 450px;
    margin: 30px auto;
  }
}