html, body {
  scroll-behavior: smooth;
  margin: 0px;
  padding: 0px;
  height: 100%;
  text-align: center;
}

section {
  min-height: 100%;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

* {
  transition: all 500ms;
}

/*-----------------html-----------------*/

html, body {
  scroll-behavior: smooth;
  margin: 0px;
  padding: 0px;
  height: 100%;
  text-align: center;
}

/*-----------------body-----------------*/

body {
  background: #696969;
  height: 100%;
  text-align: center;
}

/*-----------------header-----------------*/

header {
  position: fixed;
  top: 0;
  left: 0;
  background: #4a4a4a;
  width: 100%;
  height: 4rem;
  z-index: 2;
}

header nav {
  float: right;
}

header nav ul li {
  float: left;
  margin-right: 1rem;
}

header nav ul li a {
  font-size: 1.25rem;
}

li a {
  background-color: #4a4a4a;
  color: #fafad2;
  font-weight: 500;
  border-radius: 1px;
}

li a:hover {
  opacity: 0.75;
  background-color: #1b1b1b;
  color: #ffb6c1;
  border-radius: 1px;
}

/*-----------------logo-----------------*/

#logo {
  filter: brightness(0.9);
  float: left;
  height: 4rem;
  width: 4rem;
}

#logo img {
  width: 100%;
  height: 100%;
}

#logo:hover {
  filter: brightness(0.5);
}

/*-----------------footer-----------------*/

footer {
  background: #1b1b1b;
  width: 100%;
  margin-bottom: 50px;
}

.footer1 {
  background-color: rgba(0, 0, 0, 0);
  position: relative;
  max-width: 100%;
  max-height: 100%;
  text-align: center;
  color: #4a4a4a;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  margin: 0px;
  height: 100%;
  width: 100%;
}

.footer2 {
  position: relative;
  max-width: 100%;
  max-height: 100%;
  text-align: center;
  color: #4a4a4a;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05rem;
  margin: 0px;
  height: 100%;
  width: 100%;
  line-height: 1.5rem;
}

.footer2:hover {
  color: #ffb6c1;
  font-size: 1.05rem;
  line-height: 1.5rem;
}

/*-----------------h1-----------------*/

h1 {
  color: #fffff0;
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 0px;
}

#home hr {
  margin: auto auto 20% auto;
}

/*-----------------h2-----------------*/

h2 {
  color: #fffff0;
  font-size: 3rem;
  font-weight: 700;
  margin-top: 0px;
}

/*-----------------h3-----------------*/

h3 {
  color: #4a4a4a;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin: auto;
}

/*-----------------p-----------------*/

p {
  background-color: #1b1b1b;
  position: absolute;
  max-width: 640px;
  max-height: 480px;
  text-align: left;
  color: #fffff0;
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0px;
  height: 100%;
  width: 100%;
}

.line {
  color: #fafad2;
  pointer-events: none;
  cursor: default;
}

/*-----------------*-----------------*/

* {
  text-transform: inherit;
  font-family: 'Poppins';
}

/*-----------------hr-----------------*/

hr {
  border: 0px solid #fffff0;
  margin: 5rem auto 5rem auto;
  border-radius: 0px;
  width: 5%;
}

/*-----------------container-----------------*/

.container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 0em;
  max-width: 960px;
  max-height: 720px;
  margin: auto;
}

.content {
  display: flex;
}

.content:hover {
  filter: brightness(0.25);
}

.text {
  display: block;
  min-width: 640px;
  min-height: 480px;
}

/*-----------------webkit-----------------*/

::-webkit-scrollbar {
  width: 15px;
  color: #4a4a4a;
  border: #696969;
  border-style: dashed;
  border-width: 5px;
}

::-webkit-scrollbar-track {
  background: #4a4a4a;
}

::-webkit-scrollbar-thumb {
  background: #fafad2;
  border-radius: 12.5px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #ffb6c1;
}