@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap');

body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  color: #fff;
}
#app {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url(bg.jpg) no-repeat center center;
  top: 0;
  left: 0;
  text-align: center;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background-size: cover;
  z-index: 0;
}
#app:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 30%);
}
.youcant {
    margin: 2rem auto;
    max-width: 420px;
    font-size: 1.8rem;
    font-weight: bold;
    z-index: 1;
    padding: 10px;
}
svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.contacts {
    max-width: 200px;
    margin: 2rem auto;
    background: rgb(255 255 255 / 15%);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 38px/35px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1;
    box-shadow: 0 4px 15px 0 rgb(0 0 0 / 50%);
}
.contacts a {
    display: block;
    max-width: 48px;
    padding: 20px;
    color: #fff;
}

@media (max-width: 640px) {
  #app {
    background-position: 30% 0;
  }
}
