/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");

/* Variables */
:root {
  --header-height: 3rem;
  --font-semi: 600;

  /* Colors (hsl) */
  --hue-color: 224;
  --first-color: hsl(var(--hue-color), 60%, 40%);
  --second-color: hsl(var(--hue-color), 60%, 50%);
  --background-color: hsl(fff, 100%, 100%);

  /* Fonts & typography */
  --body-font: "Poppins", sans-serif;
  --big-font-size: 2rem;
  --h2-font-size: 1.25rem;
  --normal-font-size: 0.938rem;
  --smaller-font-size: 0.75rem;

  /* Margins */
  --mb-2: 1rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;

  /* z index */
  --z-back: -10;
  --z-fixed: 100;
}

@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 3.5rem;
    --h2-font-size: 2rem;
    --normal-font-size: 1rem;
    --smaller-font-size: 0.875rem;
  }
}

/* Main elements */

body {
  font-family: Arial, Helvetica, sans-serif;
  /* font-family: Helvetica, Helvetica, sans-serif; */
  /* font-family: "Times New Roman", Times, serif; */
  /* font-family: "Lucida Console", "Courier New", monospace; */
  margin: 0;
  padding: 0;
  background-color: var(--background-color);
}

header {
  background-color: var(--first-color);
  color: #fff;
  padding: 20px;
  text-align: center;

  /* Navigation */
  nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex; /* Make the list items display horizontally */
  }

  nav ul li {
    margin-right: 20px; /* Add space between each tab */
  }

  nav ul li a {
    font-weight: bold;
    text-decoration: none;
    color: #fff;
  }

  nav ul li a:hover {
    text-decoration: underline; /* Underline the tab on hover */
  }
}

footer {
  background-color: var(--first-color);
  color: #fff;
  text-align: center;
  padding: 20px;
  bottom: 0;
}

/* Custom classes */

.container {
  max-width: 960px;
  margin: 20px auto;
  padding: 0 20px;
  margin-bottom: 100px;
}

.projects {
  img {
    max-width: 100%;
    height: auto;
    width: 700;
  }
}

.about {
  .content {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: center; */

    @media only screen and (max-device-width: 700px) {
      flex-direction: column;
    }
  }

  a {
    background-color: var(--second-color);
    color: white;
    text-align: center;
    text-decoration: none;

    display: inline-block;
    padding: 15px 30px;
  }

  img {
    max-width: 100%;
    height: auto;
    width: 300px;
    border-radius: 50%;
    margin-right: 30px;

    @media only screen and (max-device-width: 700px) {
      margin-right: 0px;
      margin-bottom: 10px;
    }
  }
}

.contacts {
  li {
    margin-bottom: 5px;
  }
}

.home,
.about,
.skills,
.projects,
.contacts {
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.project {
  h2 {
    margin-top: 0;
  }
  padding: 20px;
  margin: 10px;
  background-color: hsl(var(--hue-color), 30%, 97%);
}

.in_development {
  p {
    margin: 0;
    text-indent: 5px;
  }
  padding: 10px;
  background-color: hsl(50, 100%, 50%);
}
