@font-face {
    font-family: 'HelveticaRounded'; /* You can give it any name */
    src: url('path/to/helvetica-rounded.woff2') format('woff2'),
         url('path/to/helvetica-rounded.woff') format('woff');
    /* Add other formats as needed for wider browser support */
    font-weight: normal; /* Specify the weight if needed */
    font-style: normal; /* Specify the style if needed */
}

@font-face {
    font-family: 'SF Pro Text';
    src: url('path/to/sf-pro-text.woff2') format('woff2');
    /* Include other formats as needed */
}

#body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
}

#main_div {
    display: flex;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background-image: url("Images/Background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 45% 55%;
}

#main_left_div{
    height: 100vh;
    width: 50vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

#submain_left_div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#HMMC_Button {
    background-image: url("Images/horologo_noword.png");
    background-size: cover;
    background-repeat: no-repeat;
    height: 20vw;
    width: 20vw;
    background-position: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5vw;
    background-image: linear-gradient(
          to bottom,
          rgba(255, 255, 255, 0.3) 0%, /* Slight white shine at the top */
          rgba(255, 255, 255, 0.1) 50%,
          transparent 50%
        ),
        url("Images/horologo_noword.png");
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3), /* Outer shadow for depth */
        inset 0 2px 5px rgba(255, 255, 255, 0.5), /* Inner highlight */
        inset 0 -2px 5px rgba(0, 0, 0, 0.3); /* Inner shadow */

      /* Smooth transition for hover */
      transition: transform 0.2s, box-shadow 0.2s;

}

/* Hover effect to enhance 3D feel */
#HMMC_Button:hover {
  transform: translateY(-2px); /* Lift button slightly */
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.4), /* Stronger shadow */
    inset 0 2px 5px rgba(255, 255, 255, 0.5),
    inset 0 -2px 5px rgba(0, 0, 0, 0.3);
}

/* Active state for press effect */
#HMMC_Button:active {
  transform: translateY(1px); /* Push down slightly */
  box-shadow:
    0 2px 10px rgba(0, 0, 0, 0.2), /* Reduced shadow */
    inset 0 2px 5px rgba(255, 255, 255, 0.5),
    inset 0 -2px 5px rgba(0, 0, 0, 0.3);
}

#main_right_div{
    height: 100vh;
    width: 50vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

#submain_right_div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#EKonyha_Button {
    background-image: url("Images/Ekonyha_Logo.PNG");
    background-size: cover;
    background-repeat: no-repeat;
    height: 20vw;
    width: 20vw;
    background-position: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5vw;
    background-image: linear-gradient(
          to bottom,
          rgba(255, 255, 255, 0.3) 0%, /* Slight white shine at the top */
          rgba(255, 255, 255, 0.1) 50%,
          transparent 50%
        ),
        url("Images/Ekonyha_Logo.PNG");
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3), /* Outer shadow for depth */
        inset 0 2px 5px rgba(255, 255, 255, 0.5), /* Inner highlight */
        inset 0 -2px 5px rgba(0, 0, 0, 0.3); /* Inner shadow */

      /* Smooth transition for hover */
      transition: transform 0.2s, box-shadow 0.2s;

}

/* Hover effect to enhance 3D feel */
#EKonyha_Button:hover {
  transform: translateY(-2px); /* Lift button slightly */
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.4), /* Stronger shadow */
    inset 0 2px 5px rgba(255, 255, 255, 0.5),
    inset 0 -2px 5px rgba(0, 0, 0, 0.3);
}

/* Active state for press effect */
#EKonyha_Button:active {
  transform: translateY(1px); /* Push down slightly */
  box-shadow:
    0 2px 10px rgba(0, 0, 0, 0.2), /* Reduced shadow */
    inset 0 2px 5px rgba(255, 255, 255, 0.5),
    inset 0 -2px 5px rgba(0, 0, 0, 0.3);
}

#EKonyha_Text {
    font-family: 'SF Pro Text', sans-serif;
    color: white;
    font-size: 4vw;
    text-align: left;
    margin: 0;
    padding: 2vh;
    text-shadow:
        0 1px 0 #bbb,  /* 1px layer beneath text */
        0 2px 0 #999,  /* 2px layer */
        0 3px 0 #888,  /* 3px layer */
        /* Add more layers with darker colors and increasing offset */
        0 9px 7px #302314; /* Add a final shadow with blur for depth */
}

#Baross_Text {
    font-family: 'SF Pro Text', sans-serif;
    color: white;
    font-size: 4vw;
    text-align: center;
    margin: 0;
    padding: 2vh;
    text-shadow:
        0 1px 0 #bbb,  /* 1px layer beneath text */
        0 2px 0 #999,  /* 2px layer */
        0 3px 0 #888,  /* 3px layer */
        /* Add more layers with darker colors and increasing offset */
        0 9px 7px #302314; /* Add a final shadow with blur for depth */
}