@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');

body {
  background: url("163354893.jpg") no-repeat center center;
  margin: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  align-content: center; 
  justify-content: center; 
  overflow: hidden;
  font-family: 'Oswald';
}

.block {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center; 
  justify-content: center;

}

.block span {
  position: absolute;
  top: 0;
  width: 375px;
  height: 240px;
  display: block;
  background: #000;
  border-radius: 50%;
  transform-origin: 140px 0;
  transform: rotate(calc(90deg * var(--i)));
  filter: blur(70px);
  opacity: 0.8;
}

.block span:nth-child(1) {
  background: #01b2fe;
}
.block span:nth-child(2) {
  background: #ff008c;
}
.block span:nth-child(3) {
  background: #00c456;
}
.block span:nth-child(4) {
  background: #ffcd00;
}

.block .card {
  position: absolute;
  width: 380px;
  height: 250px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  border: 1px solid #ddd;
  overflow: hidden;
  display: flex;
  align-items: center;
  align-content: center; 
  justify-content: space-between;
  flex-direction: column;
}

.block .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -250px;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  transform: skewX(345deg);
}

h1 {
  position: relative;
  margin-top: 10px;
  text-align: center;
  color: #123;
}

h2 {
  position: relative;
  text-align: center;
  color: #123;
}

.block .card .phone {
  padding: 10px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  text-align: end;
  font-size: 2em;
}

.phone {
  margin-right: 20px;
}

.phone a {
  text-decoration: none;
  color: #c40062;
  margin-right: 30px;
}