* {
  box-sizing: border-box;
}

.UnderConstruction {
  width: clamp(250px, 100%, 1200px);
  margin: 125px auto;
  padding: 0px;
  text-align: center;
  font-family: sansblack;
  font-size: clamp(30px, 4vw, 90px);
  color: rgb(223, 63, 37);
}

.menuIconLogoCtr {
  position: sticky;
  top: 0;
  margin: 0px;
  padding: 0px;
  z-index: 100;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  background-color: black;
}

.LogoHeadImg {
  width: 250px;
  height: 215px;
  margin: -25px -10px -100px -10px;
  -webkit-mask-image: linear-gradient(white 85%, transparent);
  mask-image: linear-gradient(white 85%, transparent);
}

.menuIconCtr {
  width: 100%;
}

.iconLinkCtr {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  padding: 0px;
}

.iconLink {
  height: 50px;
  width: 50px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  margin: 0px 0px;
}

.iconLink a {
  color: rgb(223, 63, 37);
  &:hover {
    color: white;
  }
}

.menuCtr {
  width: 100%;
  height: 55px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: stretch;
  border-top: 2px solid rgb(223, 63, 37);
  border-bottom: 2px solid rgb(223, 63, 37);
  font-size: 200%;
}

.currentPageMenuItem {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: theater_bold;
  background-color: rgb(223, 63, 37);
  color: black;
  border-left: 1px solid rgb(223, 63, 37);
}

.menuItem {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: theater_bold;
  color: rgb(223, 63, 37);
  text-decoration: none;
  &:hover {
    background-color: rgba(223, 63, 37, 0.5);
    color: white;
  }
}

.menuItemSep {
  width: 3px;
  background-color: rgb(223, 63, 37);
}

.separator {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: theater_bold;
  font-size: 225%;
  color: rgb(223, 63, 37);
}

.separator::before {
  content: '';
  flex: 1;
  margin-left: 12.5%;
  border-bottom: 2px solid rgb(223, 63, 37);
}

.separator::after {
  content: '';
  flex: 1;
  margin-right: 12.5%;
  border-bottom: 2px solid rgb(223, 63, 37);
}

.MHPresenting {
  width: clamp(250px, 100%, 1000px);
  margin: 75px auto clamp(1.5px, 0.6%, 6px) auto;
  padding: 0px;
  text-align: center;
  font-family: pacceti;
  font-size: clamp(75px, 10vw, 225px);
  color: rgb(223, 63, 37);
}

.presents {
  width: clamp(100px, 40%, 400px);
  margin: clamp(1.5px, 0.6%, 6px) auto clamp(7.5px, 3%, 30px) auto;
  padding: 0px;
  text-align: center;
  font-family: gradientico;
  font-size: clamp(25px, 3.5vw, 75px);
  color: rgb(223, 63, 37);
}

.presentsDescrCtr {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.presentsDescr {
  width: clamp(400px, 70%, 1250px);
  margin: clamp(1.5px, 0.6%, 6px) clamp(-300px, -18%, -100px) clamp(10px, 4%, 40px) clamp(-300px, -18%, -100px);
  padding: 2px;
  line-height: 175%;
  text-align: center;
  font-family: piximisa;
  font-size: clamp(20px, 3.25vw, 60px);
  color: rgb(223, 63, 37);
}

.TextBox {
  width: 50%;
  margin: clamp(10px, 4%, 40px) auto;
  padding: 10px;
  background-color: black;
  border-style: solid;
  border-width: 5px;
  border-color: black;
  border-radius: 10px;
  font-family: helvetica;
  font-size: clamp(9px, 1.35vw, 25px);
  color: rgb(255, 90, 60);
}

.TextBox a {
  color: rgb(255, 160, 50);
  &:hover {
    color: white;
  }
}

body {
  margin-top: 0px;
  padding-top: 0px;
  background-color: black;
  font-family: arial;
  color: firebrick;
}


/* Left-aligned image */
.image-left {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
}

.image-left img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Right-aligned image */
.image-right {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
}

.image-right img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Clearfix to ensure content doesn't overlap */
.content::after {
    content: "";
    clear: both;
    display: table;
}
