body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.header-logo {
  width: 80px;
  height: auto;
  display: block;
  margin: 0 auto;
}

header {
  background-color: #39C5BB;
  text-align: center;
  padding: 0px 0; /* Adjust the padding so the header size remains the same */
  position: relative;
  overflow: hidden;
}

header {
  position: relative;
}

.login {
  position: absolute;
  top: 20px;
  right: 20px;
  text-decoration: none;
  color: #FFFFFF;
  font-size: 18px;
  cursor: not-allowed;
  font-size: small;
}

.login:hover {
  text-decoration: underline;
}

.header-line {
  position: absolute;
  height: 100%;
  width: 10px;
  top: 0;
}

.header-line-1,
.header-line-4 {
  background-color: #141414;
}

.header-line-2,
.header-line-5 {
  background-color: #EF2A3A;
}

.header-line-3,
.header-line-6 {
  background-color: #141414;
}

.header-line-1,
.header-line-2,
.header-line-3 {
  left: 20%;
}

.header-line-4,
.header-line-5,
.header-line-6 {
  right: 20%;
}

.header-line-2 {
  left: calc(20% + 10px);
}

.header-line-3 {
  left: calc(20% + 20px);
}

.header-line-5 {
  right: calc(20% + 10px);
}

.header-line-6 {
  right: calc(20% + 20px);
}

h1 {
  margin: 0;
  color: #FFFFFF;
  z-index: 1;
}


.fish-section {
  background-color: #F6D2BE;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 250px);
  position: relative;
}

.fish-container {
  position: relative;
  z-index: 2;
}

.fish-container img {
  display: block;
  max-width: 100%;
  cursor: pointer;
}

.fish-click-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.buttons {
  position: absolute;
  display: flex;
  justify-content: space-around;
  width: 50%;
  left: 25%;
  bottom: -35%;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.buttons.disabled .button {
  pointer-events: none;
}

.button {
  background-color: #39C5BB;
  padding: 20px 40px;
  text-decoration: none;
  border-radius: 5px;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button img {
  max-width: 50px;
  max-height: 50px;
}

.gray-area {
  background-color: #9E9E9E;
  height: 102px;
  position: relative;
}

.tie-line {
  position: absolute;
  left: 49%;
  top: 0;
  height: 100%;
  width: 38px;
  background-color: #39C5BB;
}

footer {
  background: repeating-linear-gradient(
    100deg,
    #141414 0,
    #141414 130px,
    #1F1F1F 130px,
    #1F1F1F 260px
  );
  height: 68px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background-color: #39C5BB;
}
