@font-face {
  font-family: "Kohinoor";
  font-weight: bold;
  src: url(fonts/KohinoorBangla-Bold.otf);
}
@font-face {
  font-family: "Kohinoor";
  font-weight: normal;
  src: url(fonts/KohinoorBangla-Regular.otf);
}

:root {
  --bg-color: #fdd205;
  --main-color: #231f20;
  --secondary-color: #dcdbdb;
  font-family: Kohinoor, Tahoma, Verdana, Arial;
  --text-size: min(4vw, 4vh);
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

body {
  background-color: var(--bg-color);
  color: var(--main-color);
}

#sides {
  box-sizing: border-box;
  height: 100%;
  padding: min(3vw, 3vh);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

#top {
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
}

#space {
  word-spacing: min(2.25vw, 2.25vh);
  font-size: var(--text-size);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-wrap: nowrap;
  vertical-align: top;
  text-align: left;
}

#title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: min(2vw, 2vh);
}

#title img {
  object-fit: contain;
  max-width: 40vw;
  max-height: 40vh;

  font-size: min(15vw, 15vh);
  font-weight: bold;
}

#title #opening {
  font-size: var(--text-size);
  font-weight: normal;
  text-align: center;
  text-wrap: nowrap;
  overflow: visible;
}

#social {
  flex-grow: 1;
  max-width: min(30vw, 20vh);
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: start;
}

#social * {
  flex-grow: 1;
}

#social img {
  width: 100%;
  object-fit: contain;
}

#footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  gap: 15vw;
}

#email {
  font-size: var(--text-size);
  color: var(--main-color);
}

#address {
  font-size: var(--text-size);
  color: var(--main-color);
  text-align: right;
}
