* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto";
}

body {
  background-color: #f5f5f5;
  transition: 0.5s all;
}
body a {
  text-decoration: none;
}
body li {
  list-style: none;
}
body.dark-theme {
  background-color: #000c18;
  color: #f5f5f5;
  transition: 0.5s all;
}
body.dark-theme .header-profile .nav, body.dark-theme main .nav {
  color: #f5f5f5;
}
body.dark-theme .header-profile .nav__logo img, body.dark-theme main .nav__logo img {
  box-shadow: 0 0 10px 5px #ff3b0a;
}
body.dark-theme .header-profile .nav__logo img:hover, body.dark-theme main .nav__logo img:hover {
  box-shadow: 0 0 10px 5px #0086df;
}
body.dark-theme .header-profile__image {
  border: 5px solid #ff3b0a;
  box-shadow: 0 0 10px 5px #ff3b0a;
}
body.dark-theme .header-profile__image:hover {
  border: 5px solid #0086df;
  box-shadow: 0 0 15px 0px #0086df;
}
body.dark-theme main .social-network {
  color: #f5f5f5;
}
body.dark-theme main .social-network:hover {
  background-color: #ff3b0a;
  box-shadow: 0 0 10px 5px #ff3b0a;
}
body.dark-theme main .social-network__links {
  border: 3px solid #ff3b0a;
  color: #f5f5f5;
}

.container {
  max-width: 968px;
  margin-left: 16px;
  margin-right: 16px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  .container {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.change-theme {
  font-size: 1.71rem;
  cursor: pointer;
  transition: 0.4s;
}

body::-webkit-scrollbar {
  width: 7px;
}
body::-webkit-scrollbar-track {
  background-image: #000;
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0086df, rgba(221, 221, 221, 0));
  border-radius: 30px 0 0 30px;
  border: 3px solid linear-gradient(180deg, #0086df, rgba(221, 221, 221, 0));
  transition: 1s;
}
body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0086df, rgba(221, 221, 221, 0));
  border: 3px solid linear-gradient(180deg, #0086df, rgba(221, 221, 221, 0));
}
.header-profile {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  margin: 30px 0 0 0;
}
.header-profile .nav {
  width: 85%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.header-profile .nav__logo img {
  height: 50px;
  border-radius: 10px;
  transition: 0.5s all;
  box-shadow: 0 0 10px #0086df;
}
.header-profile .nav__logo img:hover {
  box-shadow: 0 0 10px 5px #ff3b0a;
}
.header-profile__image {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  border: 5px solid #0086df;
  box-shadow: 0 0 10px 0px #0086df;
  padding: 3px;
  transition: 0.5s all;
}
.header-profile__image:hover {
  border: 5px solid #ff3b0a;
  box-shadow: 0 0 15px 5px #ff3b0a;
}
.header-profile__name {
  font-size: 20px;
  font-weight: 500;
  margin: 25px 0 0 0;
}
.header-profile__user {
  font-size: 20px;
  margin: 10px 0 0 0;
  padding: 0 20px;
  text-align: center;
}
@media screen and (max-width: 440px) {
  .header-profile__user {
    font-size: 16px;
  }
}

main {
  margin: 15px 0 0 0;
}
main .social-network {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 70px;
  font-size: 20px;
  color: #000;
  border-radius: 10px;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: 0.5s all;
}
main .social-network:hover {
  background-color: #0086df;
  color: #fff;
  box-shadow: 0 0 10px 5px #0086df;
}
main .social-network__text {
  font-size: 20px;
  font-weight: 400;
  width: 80px;
}
@media screen and (max-width: 440px) {
  main .social-network__text {
    font-size: 18px;
  }
}
main .social-network__links {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 10px auto !important;
  width: 70%;
  height: 70px;
  font-size: 20px;
  color: #000;
  border: 3px solid #0086df;
  border-radius: 10px;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
}
@media screen and (max-width: 440px) {
  main .social-network__links {
    width: 95%;
  }
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0 0 0;
}
.footer__copyright {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 20px;
  font-weight: 400;
}