/* RESET */
body {
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    background: #f0f0f0;
    color: #333;
    padding: 2rem 1rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

h1, h2, h3 {
    color: #333;
    font-family: 'DM Serif Display', serif;
}

a {
    color: #3e6b89;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* NAVIGATION */
.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #4f5d73;
}

.main-nav a {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.main-nav a:hover {
    background-color: #e6eef3;
}

/* PROFILE SECTION */
.hero {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-info {
    display: inline-block;
    text-align: center;
    max-width: 800px;
}

.profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 4px solid #fff;
}

.hero h1 {
    font-size: 2.5rem;
    margin: 0;
}

.tagline {
    font-size: 1.1rem;
    color: #555;
}

/* INTRO */
.intro blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin: 2rem 0;
    color: #4a5568;
    border-left: 4px solid #4a90e2;
    padding-left: 1rem;
    background-color: #f7fafc;
}

/* EXPLORE */
.explore {
    margin-top: 2rem;
}

.explore h2 {
    font-size: 1.75rem;
    font-weight: 600;
}

.categories {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.categories li {
    background-color: #f0f4f8;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.2s;
}

.categories li:hover {
    transform: scale(1.05);
    background-color: #e9f2f9;
}

.categories li a {
    font-weight: 600;
    color: #3e6b89;
    font-size: 1.2rem;
}

/* FOOTER */
footer {
    text-align: center;
    margin-top: 4rem;
    font-size: 0.9rem;
    color: #999;
}


@import 'https://fonts.googleapis.com/css?family=Source+Sans+Pro:700';
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
}

body {
  padding: 0px;
  margin: 0;
  font-family: "Source Sans Pro", sans-serif;
  background: #F5F0FF;
  -webkit-font-smoothing: antialiased;
}

.dark {
  background: #000000;
}

.flex {
  margin-top: 100px;
  display: absolute;
  align-items: center;
  justify-content: center;
}

a.bttn {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease all;
}
a.bttn:hover {
  color: #FFF;
}
a.bttn:focus {
  color: #FFF;
}

a.bttn-dark {
  color: #383c56;
  text-decoration: none;
  transition: 0.3s ease all;
}
a.bttn-dark:hover {
  color: #FFF;
}
a.bttn-dark:focus {
  color: #FFF;
}

.bttn {
  position: absolute;
  color: #fff;
  font-size: 20px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  width: 270px;
  font-weight: bold;
  padding: 14px 0px;
  border: 3px solid #ffffff;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
}
.bttn:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: "";
  background-color: #ffffff;
  z-index: -2;
}
.bttn:hover:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}
.bttn:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}

.bttn-dark {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
  width: 170px;
  font-weight: bold;
  padding: 10px 0px;
  border: 3px solid #383c56;
  border-radius: 2px;
  position: relative;
  box-shadow: 0 2px 10px rgba(42, 40, 40, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.bttn-dark:before {
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  content: "";
  background-color: #383c56;
  z-index: -1;
}
.bttn-dark:hover:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}
.bttn-dark:focus:before {
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}/*# sourceMappingURL=style.css.map */