/*fonts.css*/
@font-face {
  font-family: "TT-norms";
  src: url("font/TT Norms Pro Regular.ttf") format("truetype");
}

/* 폰트 적용 */
body {
  font-family: "TT-norms";
}

.container {
  /* background-color: #fff100; */
  width: 1000px;
  max-width: 100%;
  height: 100%;
  margin: 0 auto 0;
  border-radius: 0px;
  animation-duration: 1s;
  animation-name: fadeinout;
}

.sartoriusbox {
  width: 100%;
  max-height: 300px;
  background-color: #ffed00;
  display: flex;
  flex-direction: column;
  /* padding-top: 30px; */
  word-break: break-all;
}

.sartorius_logo {
  width: 130px;
  position: absolute;
  left: 20px;
  top: 30%;
}

.welcome-text {
  margin: 0px 0px 30px 25px;
  font-size: clamp(16px, 5vw, 36px);
}

.wrapper {
  display: grid;
  float: left;
  box-sizing: border-box;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  height: 90%;
  width: 100%;
}

.item1 {
  background-color: #ffffff;
  grid-column: 1/3;
}
.item2 {
  background-color: #ededed;
}
.item3 {
  background-color: #000000;
}

.item4 {
  background-color: #ffed00;
}
.item5 {
  background-color: #ffffff;
}

.grid-item {
  padding: 20px;
  text-align: center;
}

.image-item {
  grid-column: span 1; /* 1개의 열을 차지하도록 설정 */
  grid-row: span 1; /* 1개의 행을 차지하도록 설정 */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.image-icon {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-top: 0px; /* 원하는 만큼의 음수값을 사용하여 이미지를 위로 조절 */
  position: relative;
  top: 0px; /* 위의 margin-top과 같은 값으로 조절 */
}

.text-item {
  text-align: center;
  margin: 0px;
  font-size: 18px;
}

a {
  text-decoration: none;
  color: inherit;
  /* 링크 스타일 설정, 필요에 따라 스타일을 조절하세요. */
}
