@import url("fonts.css");
* {
  outline: none;
  box-sizing: border-box;
}

:root {
  --theme-bg-color: rgba(16 18 27 / 40%);
  --border-color: rgba(113 119 144 / 25%);
  --theme-color: #f9fafb;
  --inactive-color: rgba(222, 222, 222, 0.78);
  --body-font: "Poppins", sans-serif;
  --hover-menu-bg: rgba(12 15 25 / 30%);
  --content-title-color: #999ba5;
  --content-bg: rgb(146 151 179 / 13%);
  --overlay-bg: rgba(36, 39, 59, 0.3);
  --scrollbar-bg: rgb(1 2 3 / 40%);
}

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

[data-title]:hover:after {
  opacity: 1;
  transition: all 0.1s ease 0.5s;
  visibility: visible;
}

[data-title]:after {
  content: attr(data-title);
  position: absolute;
  bottom: -1.6em;
  padding: 4px 4px 4px 8px;
  color: #ffffff;
  margin-left: -20vh;
  white-space: nowrap;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-color: rgb(201 203 216 / 14%);
  opacity: 0;
  z-index: 99999;
  visibility: hidden;
}

[data-title] {
  position: relative;
}

body {
  font-family: var(--body-font);
  background-image: url('../static.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2em;
  width: 100%;
  min-height: 100%;
  margin: 0;
}

@media screen and (max-width: 480px) {
  body {
    padding: 0.8em;
  }
}

.video-bg {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.video-bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

img {
  max-width: 100%;
}

.personal-header {
  text-align: center;
  color: rgb(255, 255, 255);
}

.personal-header a {
  text-align: center;
  color: rgb(255, 203, 203);
}

main {
  color: white;
  padding: 10vh;
}

.app {
  background-color: rgb(201 203 216 / 14%);
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  border-radius: 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  font-weight: 500;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  color: white;
  font-weight: 400;
}

.header {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 58px;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  padding: 0 30px;
  white-space: nowrap;
}

@media screen and (max-width: 480px) {
  .header {
    padding: 0 16px;
  }
}

.header-menu {
  display: flex;
  align-items: center;
}

.header-menu a {
  padding: 20px 30px;
  text-decoration: none;
  color: var(--inactive-color);
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

@media screen and (max-width: 800px) {
  .header-menu a:not(.main-header-link) {
    display: none;
  }
}

.header-menu a.is-active,
.header-menu a:hover {
  color: var(--theme-color);
  border-bottom: 2px solid var(--theme-color);
}

.notify {
  position: relative;
}

.notify:before {
  content: "";
  position: absolute;
  background-color: #3a6df0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  right: 20px;
  top: 16px;
}

@media screen and (max-width: 1055px) {
  .notify {
    display: none;
  }
}

.menu-circle {
  width: 15px;
  height: 15px;
  background-color: #f96057;
  border-radius: 50%;
  box-shadow: 24px 0 0 0 #f8ce52, 48px 0 0 0 #5fcf65;
  margin-right: 195px;
  flex-shrink: 0;
}

@media screen and (max-width: 945px) {
  .menu-circle {
    margin-right: 0;
  }
}

.header-profile {
  display: flex;
  align-items: center;
  padding: 0 16px 0 40px;
  margin-left: auto;
  flex-shrink: 0;
}

.header-profile svg {
  width: 22px;
  color: #f9fafb;
  flex-shrink: 0;
}

.notification {
  position: relative;
}

.notification-number {
  position: absolute;
  background-color: #3a6df0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  right: -6px;
  top: -6px;
}

.notification + svg {
  margin-left: 22px;
}

@media screen and (max-width: 945px) {
  .notification + svg {
    display: none;
  }
}

.profile-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 2px solid var(--theme-color);
  margin-left: 22px;
}

.wide .header-menu,
.wide .header-profile {
  display: none;
}

.wide .menu-circle {
  margin-right: 0;
}

.main-header {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  height: 58px;
  flex-shrink: 0;
}

.blog {
  position: relative !important;
  width: 30px !important;
  padding: 12px !important;
}

.paper {
  width: 30px !important;
}

.main-header .header-menu {
  margin-left: 150px;
}

@media screen and (max-width: 1055px) {
  .main-header .header-menu {
    margin: auto;
  }
}

a {
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.link {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 15px 0;
  position: relative;
}
.link:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.link:hover:after {
  width: 100%;
  left: 0;
}

.main-header .header-menu a {
  padding: 20px 24px;
}

::-webkit-scrollbar {
  width: 6px;
  border-radius: 10px;
  html,
  body {
    margin: 0;
    padding: 0;
    min-height: 100%;
  }
  ::-webkit-scrollbar-thumb {
    background: var(--scrollbar-bg);
    border-radius: 10px;
  }
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.25rem;
  color: white;
}

h3 {
  font-size: 2rem;
  color: white;
}

h4 {
  font-size: 1.75rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.25rem;
}

p {
  font-size: 1rem;
  color: white;
}

@media (max-width: 480px) {
  html {
    font-size: 12px;
  }
  .menu-circle {
    margin-right: 25px;
  }
  main {
    padding: 32px;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  html {
    font-size: 13px;
  }
  .menu-circle {
    margin-right: 55px;
  }
  main {
    padding: 41px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  html {
    font-size: 14px;
  }
  .menu-circle {
    margin-right: 80px;
  }
  main {
    padding: 52px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  html {
    font-size: 15px;
  }
  .menu-circle {
    margin-right: 117px;
  }
  main {
    padding: 61px;
  }
}

@media (min-width: 1200px) and (max-width: 1499px) {
  html {
    font-size: 16px;
  }
  .menu-circle {
    margin-right: 149px;
  }
  main {
    padding: 72px;
  }
}

@media (min-width: 1500px) {
  html {
    font-size: 16px;
  }
  .menu-circle {
    margin-right: 195px;
  }
  main {
    padding: 82px;
  }
}

.app {
  min-height: 100vh;
  justify-content: space-between;
  padding: 1em;
}


