@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap");

body {
  background-image: url("background.jpg");
  background-size: auto;
  background-position: bottom;
  padding: 0;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 100vh;
}
.text {
  text-transform: uppercase;
  font-size: calc(100vw / 20);
}

.contacts {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem;
  gap: 1rem;
  justify-content: center;
  color: #765959;
}
