*{
    box-sizing: border-box;
    margin: 0;
    font-family: "Gotham", sans-serif;
}

@font-face {
  font-family: "Neutra";
  src: url("fonts/Neutra\ Display\ Thin.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family:"Gotham";
  src: url("fonts/Gotham\ Black.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
}




.main_cont{
    width: 100%;
    height: 100vh;
}
header{
    width: 100%;
    height: 10%;
}
.logo_cont{
    width: 180px;
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo_cont img{
    width: 180px;
    height: 35px;
}
.main_box{
    width: 100%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box{
    width: 350px;
    height: 350px;
    background: none;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 20px;
}
.box p{
    color: black;
  letter-spacing: 0.18em;
  transform: scaleY(1.6);
  display: inline-block;
  font-size: 18px;
  position: absolute;
  top: 100px;
}
.info_box{
    width: auto;
    height: auto;
    position: absolute;
    right: -60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.info_box img{
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
    transform-origin: center center;
}

.inst_box{
    width: 30px;
    height: 30px;
    top: -40px;
}
.inst_box img:hover{
    transform: scale(1.1);
}
.tg_box{
    width: 35px;
    height: 35px;
}
.tg_box img:hover{
    transform: scale(1.1);
}
.tiktok_box{
    width: 35px;
    height: 35px;
}
.tiktok_box img:hover{
    transform: scale(1.1);
}
.facebook_box{
    width: 35px;
    height: 35px;

}
.facebook_box img:hover{
    transform: scale(1.1);
}
.tshirt{
    width: 350px;
    height: 350px;
    background: none;
    position: absolute;
    border-radius: 20px;

}
.tshirt {
  filter:
    drop-shadow(0 12px 24px rgba(0,0,0,0.4))
    drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}

.nl-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
}

.nl-input {
  flex: 1;
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  position: absolute;
  top: 380px;
  left: -23px;
}

.nl-input:focus {
  border-color: #000;
}

.nl-button {
  padding: 12px 18px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  background: #000;
  color: #fff;
  position: absolute;
  top: 380px;
  left: 214px;
  overflow: visible;
}