@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: white;
  font-family: "Poppins", sans-serif;
  background-image: url("./img/background.jpg"),
    url("./img/background_mirror.jpg");
  background-size: cover, cover;
  background-position: top, top;
  background-repeat: no-repeat, repeat;
  height: 100vh;
  min-height: 100%;
}

nav {
  display: flex;
  height: 100px;
  width: 100%;
}

nav > div:first-child {
  background-color: #69013b;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav > div:first-child img {
  width: 100%;
  height: auto;
}

nav > div:last-child {
  background-color: #69013b;
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav > div ul {
  list-style: none;
  display: flex;
  width: 100%;
  justify-content: center;
}

nav > div ul li {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
}

nav > div ul li a {
  color: #fce0d1;
  text-decoration: none;
}

nav > div ul li a:hover {
  color: white;
}

header {
  width: 100%;
  height: 125px;
  display: flex;
  padding: 70px 60px 0 60px;
}

header > div:first-child {
  width: 18%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-right: 1px solid #dee2e6;
}

header > div:first-child img {
  border-radius: 50%;
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  height: 70px;
}

header > div:last-child {
  width: 82%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: left;
  padding: 0 0 0 20px;
  height: 100%;
}

header > div:last-child h2 {
  color: #69013b;
  height: 30%;
  font-family: "Playfair Display", serif;
}

header > div:last-child div {
  display: flex;
  flex-direction: row;
  height: 60%;
  background-color: rgba(252, 224, 209, 0.4);
  align-items: center;
}

header > div:last-child div div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 40px 0 20px;
}

header > div:last-child div div p {
  color: #69013b;
  font-family: "Playfair Display", serif;
}

header > div:last-child div a {
  color: #69013b;
  font-family: "Playfair Display", serif;
  background-color: rgba(252, 224, 209, 0.6);
  margin: 0 20px 0 20px;
  padding: 3px;
  border: 1px solid #69013b;
  text-decoration: none;
}

main {
  margin: 30px 150px 30px 160px;
  font-family: "Playfair Display", serif;
}

main h1,
main h2,
main h3,
main h4 {
  color: #69013b;
}

main h1 {
  font-size: 3.2rem;
  margin-top: 50px;
}
main h2 {
  font-size: 2.5rem;
  margin-top: 40px;
}
main h3 {
  font-size: 2.2rem;
  margin-top: 20px;
}

main h4 {
  font-size: 1.5rem;
  margin-top: 20px;
}

.h4_1::before {
  content: "🌐 "; /* для HTML */
}

.h4_2::before {
  content: "🎨 "; /* для CSS */
}

.h4_3::before {
  content: "⚡ "; /* для JavaScript */
}

.h4_4::before {
  content: "🔄 "; /* для React */
}

.h4_5::before {
  content: "🔧 "; /* для PHP */
}

.h4_6::before {
  content: "🗃️ "; /* для Databases */
}

.h4_7::before {
  content: "📈 "; /* для Git */
}

.h4_8::before {
  content: "🌍 "; /* для Web Hosting & Deployment */
}

.h4_9::before {
  content: "📱 "; /* для Responsive Web Design */
}

.h4_10::before {
  content: "🔒 "; /* для Web Security */
}

main ol li {
  font-size: 2rem;
}
main ol {
  list-style-type: none;
}

main ol li p {
  font-size: 1rem;
  margin-top: 10px;
}

main p {
  font-size: 1rem;
  margin-top: 20px;
}

footer {
  background-color: #69013b;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fce0d1;
  margin: 80px 0 0 0;
  padding-top: 10px;
}

footer > div a {
  color: #fce0d1;
  text-decoration: none;
}
footer > div p {
  margin: 10px 0 10px 0;
}
