/* Basic reset and layout */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and overall layout */
body {
  font-family: Arial, sans-serif;
  background-color: #2c3e50;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Container for the button */
.container {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

/* Styling for the button and link */
.button {
  margin-top: 20px;
}

.link-btn {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  padding: 15px 40px;
  background-color: #e67e22;
  color: #fff;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.link-btn:hover {
  background-color: #d35400;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.link-btn:active {
  transform: translateY(2px);
}

svg {

  height: 100px;
  margin: 20px auto;
}

a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #333;
}

.draw-hammer {
  stroke: #FFFFFF;
  stroke-width: 0.8311;
  stroke-dasharray: 175px;
  stroke-dashoffset: 175px;
  animation-name: draw;
  animation-duration: 6s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: linear;
}

.hammer-fill {
  stroke: #FFFFFF;
  animation-name: stand;
  stroke-dasharray: 125px;
  stroke-dashoffset: 125px;
  animation-duration: 6s;
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
  animation-timing-function: linear;
}

@keyframes stand {
  50% {
    fill: transparent;
  }

  65% {
    fill: #FFFFFF;
  }

  100% {
    stroke-dashoffset: 0;
    fill: #FFFFFF;
  }
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* Media query for devices with a max width of 768px (mobile and small tablets) */
@media (max-width: 768px) {
  body {
    flex-direction: column;
    /* Ensures vertical alignment */
    justify-content: center;
    /* Centers content vertically */
    align-items: center;
    /* Centers content horizontally */
    height: 100vh;
    /* Full viewport height for centering */
    padding: 0;
    /* Remove any additional padding */
  }

  .container {
    max-width: 100%;
    /* Ensure container spans most of the screen */
    margin: 0 auto;
    /* Center the container horizontally */
  }

  .link-btn {
    font-size: 16px;
    /* Adjust font size for smaller screens */
    padding: 12px 30px;
    /* Adjust padding */
  }

  svg {
    height: 125px;
    /* Adjust SVG size for smaller screens */
    margin: 10px auto;
  }
}