* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
  color: white;
  transition: background-color 0.5s ease;
}

.main-container {
  max-width: 100vw;
  max-height: 100vh;
  overflow-y: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  background-color: #000000;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: background-color 0.5s ease;
  overflow-x: hidden;
}

.rocket-container {
  margin-bottom: 20px;
}

.rocket-img {
  max-width: 100%;
  height: auto;
}

.text-container {
  color: #ffffff;
  margin-bottom: 20px;
  transition: color 0.5s ease;
}

h2 {
  font: 700;
  font: xx-large;
  font-size: 40px;
  margin-bottom: 5px;
}

h3 {
  font-size: 15px;
  margin-bottom: 10px;
}

p {
  font-size: 18px;
}

.button-container {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 20px;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.button-container a {
  text-decoration: none;
}

.pulsating-btn,
.glowing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  outline: none;
  width: 100%;
  max-width: 300px;
  white-space: nowrap;
  margin-bottom: 20px;
  text-align: center;
  text-decoration: none;
  width: 280px;
}

/* CREATE RESUME Button */
.pulsating-btn {
  color: #fff;
  background-color: #1f1f1f;
  border: 2px solid #fe5523;
  animation: dim-glow-orange 2s infinite ease-in-out;
  transition: all 0.4s ease-in-out;
}

@keyframes dim-glow-orange {
  0%, 100% {
    box-shadow: 0 0 10px #fe5523;
  }
  50% {
    box-shadow: 0 0 30px #fe5523;
  }
}

.pulsating-btn:hover {
  background-color: #fe5523;
  color: white;
}

/* VIEW DESIGN Button */
.glowing-btn {
  color: #fff;
  background-color: #1f1f1f;
  border: 2px solid #1bf4ff;
  animation: dim-glow-blue 2s infinite ease-in-out;
  transition: all 0.4s ease-in-out;
}

@keyframes dim-glow-blue {
  0%, 100% {
    box-shadow: 0 0 10px #1bf4ff;
  }
  50% {
    box-shadow: 0 0 30px #1bf4ff;
  }
}

.glowing-btn:hover {
  background-color: #1bf4ff;
  color: #121212;
  box-shadow: 0 0 20px rgba(27, 244, 255, 1), 0 0 30px rgba(27, 244, 255, 0.7), 0 0 40px rgba(27, 244, 255, 0.5);
}

/* Media Query for Smaller Screens */
@media (max-width: 768px) {
  .button-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .pulsating-btn,
  .glowing-btn {
    width: 90%;
    margin-bottom: 20px;
  }

  .main-container {
    overflow-y: scroll;
    padding-bottom: 50px;
  }
}
