    /* General Reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Roboto', sans-serif;
      line-height: 1.5;
      background-color: #1e1e1e;
      color: #ddd;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
    }
     h1 {
            font-size: 38px;
        }
p {
    font-size:20px;
}

header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background-color: #1e1e1e;
      color: #ddd;
      padding: 10px;
      z-index: 1000;

    }
    header h1 {
      font-size: 20px;
    }
    header nav {
      margin-top: 4px;
    }
    header nav a {
      margin-right: 15px;
      text-decoration: none;
      color: #fff;
      font-size: 20px;
    }
    header nav a:hover {
      text-decoration: none;
    }
    .container {
      max-width: 660px;
      width: 90%;
      text-align: left;
    }
    .containerpage {
      max-width: 90%;
      width: 90%;
      text-align: left;
    }
    .links {
      text-align: left;
      margin: 2rem 0;

    }
    .links a {
      font-family: 'Rokkitt', serif;
      display: inline-block;
      text-decoration: none;
      font-size: 20px;
    padding: 6px 60px;
    }
    .linkheader {
      text-align: left;
      margin: 0.5rem 0;

    }
    .linkheader a {
      font-family: 'Rokkitt', serif;
      display: inline-block;
      text-decoration: none;
      font-size: 20px;
    padding: 5px 60px;
    }

.divider{
    margin: 1.5rem;
    display: inline;
}
.dividerheader{
    margin: 0.5rem;
    display: inline;
}

    footer {
      text-align: center;
      margin-top: 2rem;
      font-size: 0.9rem;
      color: #aaa;
    }

.btn {
  border: 3px solid #ddd;
  background-color: #1e1e1e;
  color: #ddd;
  padding: 5px 60px;
  font-size: 20px;
  cursor: pointer;
    border-radius: 10px;
}

.btncircle {
  border: 3px solid #ddd;
  background-color: #1e1e1e;
  color: #ddd;
  padding: 5px;
  font-size: 20px;
  cursor: pointer;
    border-radius: 25px;
}

/* Home */
.home {
  border-color: #ddd;
  color: #ddd;
}

.home:hover {
  background-color: #ddd;
  color: #1e1e1e;
}


/* Work */
.work {
  border-color: #1ABC9C;
  color: #1ABC9C;
}

.work:hover {
  background-color: #1ABC9C;
  color: #1e1e1e;
}

/* Skills */
.skills {
  border-color: #3498DB;
  color: #3498DB;
}

.skills:hover {
  background: #3498DB;
  color: #1e1e1e;
}

/* About */
.about {
  border-color: #9B59B6;
  color: #9B59B6;
}

.about:hover {
  background: #9B59B6;
  color: #1e1e1e;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #eee;
}

th, td {
    font-weight: 400;
font-family: 'Roboto', sans-serif;

  padding: 8px;
}

    @media (max-width: 768px) {
      .links a {
        display: block;
        margin: 0.25rem auto;
        text-decoration: none;
      font-size: 18px;
    padding: 5px 20px;
      }
     .linkheader a {

        margin: 0.25rem auto;
        text-decoration: none;
      font-size: 18px;
    padding: 5px 20px;
      }
     h1 {
            font-size: 22px;
        }

        p {
    font-size:18px;
}
              header h1 {
        font-size: 18px;
      }
      header nav a {
        font-size:18px;
      }
    }