@font-face {
  font-family: 'GT Walsheim';
  src: url('/fonts/GT-Walsheim-Pro-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: 'GT Walsheim';
  src: url('/fonts/GT-Walsheim-Pro-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: 'GT Walsheim';
  src: url('/fonts/GT-Walsheim-Pro-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}

body {
  padding: 0;
  margin: 0;
  font-family: GT Walsheim, -apple-system, 'SF UI Display', 'Helvetica Neue', 'Arial', sans-serif;
  min-height: 100vh;
  background: linear-gradient(180deg, #1D5FF6 20.83%, #458EF5 68.23%, #67B5F4 100%);

  display: flex;
  align-items: center;
}

h1 {
  font-size: 44px;
  line-height: 1.4;
  font-weight: bold;
  color: #F3F5F7;
  margin: 0;
}

p {
  font-size: 22px;
  line-height: 1.4;
  color: #F3F5F7;
  margin-top: 16px;
}

a {
  display: inline-flex;
  padding: 12px 24px;
  background-color: white;
  border-radius: 64px;
  text-decoration: none;
  color: #1D5FF6;
  font-size: 18px;
  margin-top: 40px;
}

a img {
  margin-right: 8px;
}

.image-wrapper {
  /* display: inline-block; */
  background-color: radial-gradient(#1D5FF6 0%, rgba(102, 122, 244, 0.5) 46.87%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  bottom: 0;
  right: 0;
}

.bubble {
  width: 240px;
  height: 240px;
  background-image: url("../img/Bubble.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -100px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.content {
  margin-left: 128px;
}
/* 
.bubble p {
  color: #07183E;
  font-size: 36px;
  background: white;
} */

@media only screen and (max-width: 600px) {
  body {
    padding: 0 24px;
    align-items: flex-start;
    flex-direction: column;
  }
  img {
    width: 100%;
  }
  .content {
    margin-left: 0;
    text-align: center;
  }
  .image-wrapper {
    position: relative;
    margin-top: auto;
  }
  .bubble {
    width: 100px;
    height: 100px;
    top: 20px;
    left: 0;
  }
}