* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

.squirrel {
  font-family: Arial, sans-serif;
  min-width: 100%;
  min-height: 100vh;
  scroll-behavior: smooth;
  background-image: url(images/background.png);
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.header ul {
  list-style-type: none;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #000000;
  text-shadow: 5px 5px 5px #d49203;
}

.profile {
  max-width: 60px;
  height: auto;
}

.content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 10%;
}

.marquee-container {
  width: 500px;
  max-width: 90%;
  height: 40px;
  overflow: hidden;
  position: relative;
  background-color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 5px auto;
  display: flex;
  align-items: center;
  font-weight: bold;
  border-radius: 5px;
  font-size: 16px;
}

.marquee-item1 {
  display: inline-block;
  white-space: nowrap;
  animation: marquee1 15s linear infinite;
  margin: 0 10px;
}
.marquee-item2 {
  display: inline-block;
  white-space: nowrap;
  animation: marquee1 15s linear infinite;
  margin: 0 10px;
}
@keyframes marquee1 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes marquee2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.botton {
  position: relative;
  background-image: url(images/bottom.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 500px;
  max-width: 90%;
  height: 150px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.botton h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 5px 5px 5px #585700;
}

@media (max-width: 768px) {
  .logo-text {
    font-size: 1.4rem;
  }

  .content-wrapper {
    padding-bottom: 20%;
  }

  .marquee-container {
    height: 50px;
    padding: 5px;
    font-size: 18px;
  }

  .botton {
    height: 100px;
    margin-bottom: 40px;
  }

  .botton h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 1.2rem;
  }

  .profile {
    max-width: 40px;
  }

  .content-wrapper {
    padding-bottom: 25%;
  }

  .marquee-container {
    font-size: 20px;
    height: 60px;
  }

  .botton {
    margin-bottom: 60px;
  }

  .botton h1 {
    font-size: 2rem;
  }
}
