
:root{

    --primary-off-white: #f0f0f0;
    --secondary-off-white: #e0e0e0;

    --primary-blue: #3c74a9;
    --secondary-blue: #42a5f5;

    --primary-green: #4caf50;
    --secondary-green: #81c784;

    --primary-red: #f44336;
    --secondary-red: #e57373;

    --primary-yellow: #ffeb3b;
    --secondary-yellow: #fff176;

    --primary-black: #212121;
    --secondary-black: #424242;

    --primary-orange: #ff9800;
    --secondary-orange: #ffb74d;


}

.return-button{
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 1.5vw;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    color: var(--primary-black);
    background-color: var(--primary-off-white);
    border: none;
    border-radius: 100%;
    cursor: pointer;
    box-shadow:
        -5px -5px 15px rgba(255, 255, 255, 0.7), /* Light shadow (top-left) */
        5px 5px 15px rgba(0, 0, 0, 0.3); /* Dark shadow (bottom-right) */
    transition: all 0.2s ease-in-out;
    text-align: center;
    text-decoration: none;
}

.return-button:hover{
    box-shadow:
        inset -5px -5px 15px rgba(255, 255, 255, 0.7), /* Inset light shadow (top-left) */
        inset 5px 5px 15px rgba(0, 0, 0, 0.3); /* Inset dark shadow (bottom-right) */
    transform: translateY(2px);
}

.download-button{
    position: absolute;
    top: 20px;
    left: 70px;
    font-size: 1.5vw;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    color: var(--primary-black);
    background-color: var(--primary-off-white);
    border: none;
    border-radius: 100%;
    cursor: pointer;
    box-shadow:
        -5px -5px 15px rgba(255, 255, 255, 0.7), /* Light shadow (top-left) */
        5px 5px 15px rgba(0, 0, 0, 0.3); /* Dark shadow (bottom-right) */
    transition: all 0.2s ease-in-out;
    text-align: center;
    text-decoration: none;
}

.download-button:hover{
    box-shadow:
        inset -5px -5px 15px rgba(255, 255, 255, 0.7), /* Inset light shadow (top-left) */
        inset 5px 5px 15px rgba(0, 0, 0, 0.3); /* Inset dark shadow (bottom-right) */
    transform: translateY(2px);
}

.download-button a{
    text-decoration: none;
    color: var(--primary-black);
}



/*MODIFY BELOW ONLY*/

body{
    background-color: var(--primary-off-white);
    margin: 0;
    padding: 0;
    overflow: hidden;
    
}
.flexicons-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  gap : 0.5%;
}

.flexicon {
  background: var(--primary-black);
  color: var(--primary-off-white);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
    align-items: center;
  justify-content: center; /* Center icon by default */
  transition: all 0.2s ease;
  overflow: hidden;
  box-sizing: border-box;
  cursor: pointer;
  padding-left: 0px; /* No padding when not hovered */
}


.flexicon-icon {
  font-size: 24px;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content:justify;

  height: 24px;
  transition: color 0.2s;
}

.flexicon-icon i {
  color: var(--primary-off-white);
}


.flexicon-text{
  margin-left: 10px;
  font-size: 1.5rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  color: var(--primary-off-white);
}


.flexicon-text a{
    text-decoration: none;
    color: var(--primary-off-white);
}


.flexicon:hover {
  width: 200px;
  height: 64px;
  border-radius: 0px;
  box-shadow: 5px 5px 0 var(--secondary-black);

  .flexicon-icon {
    translate: 0px;
    visibility: hidden;
  }

  .flexicon-text {
    opacity: 1;
  
  }
}