:root {
  --purple: #bd3ffb;
  --orange: #fd962c;
  --blue: #2ad1fc;
}

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

body {
  background-color: #111111;
  color: white;
  font-family: "Arial", sans-serif;
}

.header-section {
  padding: 80px 40px;
  background-color: #252525;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.js-code {
  font: 20px monospace;
}

.derin-eryilmaz {
  font-size: 80px;
  font-weight: normal;
}

.purple {
  color: var(--purple);
}

.orange {
  color: var(--orange);
}

.blue {
  color: var(--blue);
}

.links {
  padding: 40px;
  display: flex;
  justify-content: space-around;
  background-color: #181818;
}

.links a {
  font-size: 18px;
  color: #cccccc;
  text-decoration-color: var(--purple);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
  transition: color 250ms, text-decoration-color 250ms;
}

.links a:hover {
  color: var(--blue);
  text-decoration-color: var(--orange);
}

.more {
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  gap: 150px;
  width: 1000px;
  border-color: var(--purple);
  border-width: 5px;
  border-left-style: solid;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 18px;
}

.section-header {
  font-size: 30px;
  font-weight: bold;
}

.section ul {
  list-style-position: inside;
}

.section a {
  color: var(--blue);
  transition: color 300ms;
}

.section a:hover {
  color: var(--purple);
}

@media (max-width: 999px) {
  .name-section {
    width: 100%;
    padding: 60px 15px;
  }
  
  .hobbies {
    font-size: 15px;
    font-weight: bold;
  }
  
  .more {
    width: 100%;
    padding: 60px 15px;
    gap: 100px;
  }
  
  .section {
    font-size: 16px;
    gap: 30px;
  }
}
