@font-face {
  font-family: 'Chewy';
  /* You can name this whatever you like */
  src: url('./Chewy-Regular.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

body {
  margin: 0;
  font-family: 'Chewy';
}

p{
  margin: 0;
}

.main {
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url('../assets/bg.png');
}

.header {
  width: 100%;
  background-image: url('../assets/bg.png');
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  height: 190px;
  min-height: 190px;
  align-items: center;
  padding: 8px;
  box-sizing: border-box;
}

.header-logo {
  width: 400px;
  height: auto;
}

.header-ad-logo {
  width: 250px;
  height: auto;
}

.header-image {
  width: 130px;
  height: auto;
}

.inner-iframe {
  width: 100%;
  border: 0;
  overflow-y: hidden;
  height: 190px;
}

.header-logos {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.fish-tank {
  border: 20px solid #006AB1;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-grow: 1;
}

.fish-tank-content {
  display: flex;
  background: white;
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  color: #006AB1;
  font-size: 80px;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  background-color: #a2dff760;
  position: relative;
  overflow: hidden;
}