body {
  font-family: sans-serif;
}

.container {
  width: 100%;
  max-width: 1000px; /* Increase the max-width for wider layout on desktop */
  margin: 0 auto;
  text-align: center;
  padding-top: 50px;
}

.description {
  margin: 20px 0;
  font-size: 1.1em;
  text-align: center;
}

.goal-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.goal-progress {
  background-color: #f3f3f3;
  border-radius: 4px;
  height: 30px;
  overflow: hidden;
}

.progress-bar {
  background-color: #4caf50;
  height: 100%;
  position: relative;
}

.goal-percentage {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.select-coin {
  font-weight: bold;
  margin-top: 1rem;
}

.select-coin i {
  margin-right: 0.5rem;
}

.coins-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around; /* Change to space-around for equal spacing */
  padding: 0 10px; /* Add padding to the sides */
}

.coin {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  width: 30%;
  margin-bottom: 20px;
}

.coin img {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
}

/* Header */
.logo {
  width: 100px;
  height: auto;
  display: block;
  margin: 10px auto;
}

header {
  background-color: #276BCF;
  padding: 20px;
  text-align: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-size: 1.1em;
}

nav a:hover {
  color: #4caf50;
}

/* Footer */
footer {
  background-color: #276BCF;
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 1.1em;
}

footer a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
}

footer a:hover {
  color: #4caf50;
}

.social-icons {
  margin-top: 10px;
}

.social-icons a {
  color: white;
  text-decoration: none;
  margin: 0 5px;
}

.social-icons a:hover {
  color: #4caf50;
}
.social-buttons-container {
  margin-top: 50px;
  text-align: center;
}

.follow-container {
  width: 100%;
  text-align: center;
}

.follow-text {
  padding-top: 20px;
  padding-bottom: 20px;
  display: inline-block;
}

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.social-buttons-container .col-4,
.social-buttons-container .col-md-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  margin-bottom: 20px;
}

.social-buttons-container img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.social-buttons-container span {
  display: block;
  font-weight: bold;
}

.social-buttons-container a {
  text-decoration: none;
  color: #276BCF;
}

.social-buttons-container a:hover {
  color: #4caf50;
}
