@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

:root {
    --main-bg-color: #111111;
    --main-text-color: #efeeee;
    --secondary-text-color: #b4b5b3;
}


*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--main-bg-color);
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
  }

  input, button, textarea, select {
    font: inherit;
  }

  /* Navigation Bar */

  ul {
    width: 100%;
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 14px;
    font-size: 10pt;
    }

  ul a {
    text-decoration: none;
    color: var(--secondary-text-color);
  }

  ul a:hover {
    color: var(--main-text-color)
  }

  ul i {
    color: var(--secondary-text-color)
  }

  ul i:hover {
    color: var(--main-text-color);
    cursor: pointer;
  }

  /* About Section */  
  
  .about {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about h1 {
    color: var(--main-text-color)
  }
  
  .about .subtitle {
    color: var(--secondary-text-color)
  }

  .about img {
    margin-top: 20px;
    height: 100px;
    border-radius: 50%;
}

.about .bio {
    margin-top: 20px;
    color: var(--main-text-color);
    text-wrap: wrap;
    max-width: 488px;
    text-align: center;
}

.links {
    margin-top: 30px;
}

.about i {
    font-size: 14pt;
    rotate: -45deg;
    position: relative;
    top: 3px;
}

.about a {
    text-decoration: none;
    color: var(--secondary-text-color);
}

.about a:hover {
    color: var(--main-text-color);
}