@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz@12..96&display=swap');
html,
body {
  padding: 0;
  margin: 0;
  color: white;
}
body{
  font-family: "Bricolage Grotesque", serif;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
  background: url('/assets/bg.png'), black;
  background-size: cover;
  background-repeat: no-repeat;
}
h1{
  text-align: center;
}
.app{
  margin: 5vw;
  width: 90vw;
  height: 8vw;
  display: grid;
  grid-template-columns: 8vw auto;
  color: white;
  text-decoration: none;
  border: 2px white solid;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}
.app:focus{
  border: 8px white solid;
  background: rgba(255, 255, 255, 0.1);
}
.app img{
  width: 6vw;
  height: 6vw;
  margin: 1vw;
  border: 1px white solid;
  border-radius: 20px 5px 5px 20px;
}
.app div{
  padding: 0.5vw;
}