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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  background: #000;
}

.container{
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url('./images/deskbg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.container__logo img{
  width: 188px;
  height: 27px;
}
.container__text{
  margin-top: 48px;
  color: #D3D3D3;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  line-height: 90%;
}
@media (max-width: 768px) {
  .container {
    background-image: url('./images/mobbg.jpg');
    background-attachment: scroll;
    height: 100dvh;
  }
  .container__logo img{
    width: 141.576px;
    height: 20.291px;
  }
  .container__text{
    margin-top: 24px;
    font-size: 15px;
  }
}
