@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('./icons.css');

body {
  margin: 0;
  background: black;
  color: white;
  font-family: 'Raleway', sans-serif;
}

a {
  color: #99f;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.header {
  display: flex;
  flex-direction: row;
  padding: 15px;
  align-items: center;
  max-width: 415px;
}

.header img {
  width: 120px;
  height: auto;
  margin-right: 10px;
  border-radius: 100%;
  border: 2px solid #99f;
}

.header h1 {
  text-transform: uppercase;
  font-size: 1.5em;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 0;
  padding-bottom: 3px;
  border-bottom: 2px solid #99f;
}

.header p {
  font-size: .9em;
  color: #aaa;
  margin-top: 10px;
}

.links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.links div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.current-project {
  margin-top: 20px;
}

.current-project p {
  color: #aaa;
  font-size: 0.9em;
  letter-spacing: 1px;
}

.current-project a {
  color: #ffe;
  text-decoration: none;
}

.text-yellow {
  color: #facc15;
}