* {
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  position: relative;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: black;
}

a{
  color: inherit;
  transition: 0.15s;
  text-decoration: none;
}

.container {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto
}

@media (min-width: 576px) {
  .container {
    max-width: 540px
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px
  }
}

.main {
  display: flex;
  flex: 1 0 auto;
  align-items: center;
  justify-content: center;
}

.social{
  display:flex;
  gap: 6px;
  align-items: center;
}

.social-item {
  display: flex;
  width: 36px;
  height: 36px;
  font-size: 16px;
  align-items: center;
  justify-content: center;
}

.social-item:hover{
  transform: scale(1.1);
}

.social-item i{
  font-size: 20px;
}

.footer {
  color: white;
}

.footer-container {
  display: flex;
  padding-top: 24px;
  padding-bottom: 24px;
  align-items: center;
  font-size: 15px;
  border-top: 1px solid rgba(248, 248, 248, 0.2);
  justify-content: space-between;
}