:root {
    --primary-color: #5987d1;
    --secondary-color: #333333;
    --background-color: #617c96;
    --text-color: #ffffff;
    --box-shadow: 0px 1px 0px rgba(0, 0, 0, 1);
  }
  
  body {
    background-color: var(--background-color);
  }
  
  
.context-button {
	text-decoration: none;
}


.icon-project{
	font-size:3rem;
}
  
  .realization-container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    background-color: var(--text-color);
    color: var(--secondary-color);
    font-size: 16px;
    line-height: 1.5;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; /* Center horizontally */
    margin-top: 20%; /* Adjust the top margin as needed */
    text-align: center;
}

.realization-content {
    margin-bottom: 20px; /* Add some space between text and buttons */
}

  .professional-button {
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    background-color: var(--primary-color);
    color: var(--text-color);
    box-shadow: var(--box-shadow);
    font-family: Georgia, serif;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    margin-top: 10px;
    margin-right: 10px; /* Adjust the value as needed */
  }
  
  .professional-button:hover {
    background-color: var(--secondary-color);
  }
  
  .professional-button:focus,
  .professional-button:active {
    outline: none;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.5);
  }
  
  .professional-button:disabled {
    background-color: #bfd1ed;
    cursor: not-allowed;
  }
  
  

body {
  margin: auto;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: auto;
  background: linear-gradient(315deg, rgb(69 69 73) 3%, rgba(60,132,206,1) 38%, rgb(133 199 195) 68%, rgb(130 119 119) 98%);
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
  background-attachment: fixed;
}

@keyframes gradient {
  0% {
      background-position: 0% 0%;
  }
  50% {
      background-position: 100% 100%;
  }
  100% {
      background-position: 0% 0%;
  }
}

.wave {
  background: rgb(255 255 255 / 25%);
  border-radius: 1000% 1000% 0 0;
  position: fixed;
  width: 200%;
  height: 12em;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.wave:nth-of-type(2) {
  bottom: -1.25em;
  animation: wave 18s linear reverse infinite;
  opacity: 0.8;
}

.wave:nth-of-type(3) {
  bottom: -2.5em;
  animation: wave 20s -1s reverse infinite;
  opacity: 0.9;
}

@keyframes wave {
  2% {
      transform: translateX(1);
  }

  25% {
      transform: translateX(-25%);
  }

  50% {
      transform: translateX(-50%);
  }

  75% {
      transform: translateX(-25%);
  }

  100% {
      transform: translateX(1);
  }
}