@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body {
  background-color: #13161B;
  overflow-x: hidden;
}

img {
  display: block;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 150px;
  user-select: none;
}

span {
  display: block;
  position: absolute;
  width: 100%;
  text-align: center;
}

.ad-soyad {
  font-family: 'Roboto Mono', monospace;
  top: 220px;
  color: #9CA3AF;
  font-size: 18px;
  user-select: none;
}

.meslek1 {
  font-family: 'Inter Tight', sans-serif;
  top: 250px;
  color: white;
  font-size: 120px;
  user-select: none;
}

.meslek2 {
  font-family: 'Inter Tight', sans-serif;
  top: 350px;
  color: white;
  font-size: 120px;
  user-select: none;
}

.meslek3 {
  font-family: 'Inter Tight', sans-serif;
  top: 450px;
  color: white;
  font-size: 120px;
  user-select: none;
}

.iletisim {
  display: flex;
  position: absolute;
  width: 200px;
  height: 60px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 54px;
  background-color: transparent;
  border-radius: 100px;
  border: 2px solid #FFA500;
  justify-content: center;
  align-items: center;
  color: #FFA500;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.iletisim:hover {
  background-color: #FFA500;
  color: black;
}

@media only screen and (max-width: 480px) {
  body {
    overflow-x: hidden;
    overflow-y: hidden;
  }
  
  img {
    display: block;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100px;
    user-select: none;
  }

  .ad-soyad {
    font-family: 'Roboto Mono', monospace;
    top: 200px;
    color: #9CA3AF;
    font-size: 18px;
    user-select: none;
  }

  .meslek1 {
    font-family: 'Inter Tight', sans-serif;
    top: 230px;
    color: white;
    font-size: 100px;
    user-select: none;
  }

  .meslek2 {
    font-family: 'Inter Tight', sans-serif;
    top: 330px;
    color: white;
    font-size: 100px;
    user-select: none;
  }

  .meslek3 {
    font-family: 'Inter Tight', sans-serif;
    top: 450px;
    color: white;
    font-size: 100px;
    user-select: none;
  }
}