@import url(https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;800;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Sacramento&display=swap);

@import "./fonts.css";
@import "./normalize.css";

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

*:focus {
  outline: 2px dotted skyblue;
  outline-offset: 4px;
}

html {
  height: 100%;
}

ul,
ol {
  list-style: none;
}

a {
  display: inline-block;
  text-decoration: none;
}

img {
  display: flex;
  object-fit: cover;
}

h1 {
  margin: 0; /* normalize cssni yo'qotish uchun */
}

body {
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Inter", sans-serif;
}

main {
  flex-grow: 1;
}

.container {
  width: 100%;
  max-width: 1000px; /* o'zgaruvchan */
  margin-inline: auto;
  padding-inline: 50px;
}

.hero {
  padding-top: 100px;
  margin-bottom: 100px;
}

.hero__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__content {
  width: 100%;
  max-width: 500px;
}

.hero__image {
  border-radius: 50%;
  box-shadow: 0px 1px 5px 0px;
}

.hero__title {
  margin-bottom: 35px;
  font-size: 50px;
  font-family: "Sacramento", "handwriting";
}

.hero__description {
  font-style: italic;
  gap:20px;
}

.projects {
  margin-bottom: 50px;
}

.projects__title {
  margin-bottom: 60px;
  font-size: 40px;
  font-family: "Sacramento","handwriting";
  text-align: center;
}

.projects__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.projects__item {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.projects__item__title {
  font-size: 24px;
  font-weight: bold;
}
.projects__item__links {
  font-size: 20px;
  display: flex;
  gap: 20px;
}
.projects__item__link {
  color: #333;
}

.projects__item__link:hover {
  color: orangered;
  text-decoration: underline;
  text-decoration-style: dotted;
}
