@font-face {
  font-family: 'Gilroy-Bold';
  src: url('./Gilroy-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy-Medium';
  src: url('./Gilroy-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy-SemiBold';
  src: url('./Gilroy-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    background: #025ED6;
    color: #fff;
    font-family: 'Gilroy', Arial, sans-serif;
    min-height: 100vh;
    box-sizing: border-box;
  }
  
  .container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .logo {
    margin-bottom: 80px;
  }
  
  .main-text {
    font-family: 'Gilroy-Bold', Arial, sans-serif;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 0.25em; /* 250 tracking için yaklaşık değer */
    line-height: 36px;
    margin-bottom: 120px;
    text-align: center;
  }
  
  .footer {
    position: absolute;
    bottom: 60px;
    width: 100%;
    text-align: center;
  }
  
  .company {
    font-family: 'Gilroy-Bold', Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    line-height: 22px;
    margin-bottom: 4px;
  }
  
  .address {
    font-family: 'Gilroy-Medium', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 19px;
    margin-bottom: 2px;
  }
  
  .email {
    font-family: 'Gilroy-SemiBold', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 19px;
  }