@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");

:root {
  --color-bg-a: #272728;
  --color-bg-b: #326d60;
  --color-bg-c: #244c44;
  --color-font-a: #308c7c;
  --color-font-b: #05f9c1;
  --color-font-c: #fff;
  --color-font-d: #9e9e9e;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
}

body {
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  background-color: var(--color-bg-a);
  position: relative;
}

main {
  min-height: 100vh;
  width: 100%;
  padding: 0 100px;
}

#preloader {
  background-color: var(--color-bg-a);
  position: absolute;
  height: 100vh;
  width: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  height: 100px;
  width: 100px;
  background-image: url(../images/logo.png);
  background-position: center;
  background-size: cover;
  -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
  animation: heartbeat 1.5s ease-in-out infinite both;
}

#hero {
  margin: 50px 0;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hero-image {
  height: 80px;
  width: 80px;
  background-image: url(../images/logo.png);
  background-position: center;
  background-size: cover;
  margin: 5px 0;
}

#hero h1 {
  color: var(--color-font-c);
  font-size: 15pt;
  letter-spacing: 1px;
  margin: 5px 0;
}

#hero h3 {
  font-size: 10pt;
  font-weight: 300;
  font-style: italic;
  color: var(--color-font-a);
  margin: 5px 0;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-buttons a {
  padding: 6px 10px;
  font-size: 10pt;
  background-color: var(--color-font-a);
  color: var(--color-font-c);
  margin: 5px 0;
  border-style: none;
  border-radius: 5px;
  cursor: pointer;
}

.hero-buttons i {
  font-size: 30pt;
  margin: 10px;
  color: var(--color-font-b);
}

.about-wrapper {
  margin: 20px;
  padding: 20px 15px;
  background-color: var(--color-bg-c);
  border-radius: 10px;
}

.about-title {
  border-bottom: 0.5px solid var(--color-font-c);
  margin: 2px 0 5px;
}

.about-title h1 {
  color: var(--color-font-c);
  font-weight: 400;
  font-size: 12pt;
  padding: 10px;
}

.about-content {
  color: var(--color-font-d);
}

.about-content ul {
  list-style: none;
  margin: 5px;
}

.about-content ul li {
  margin: 5px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  height: 10vh;
}

footer p {
  color: var(--color-font-d);
  font-size: 8pt;
  letter-spacing: 1px;
}


@media only screen and (max-width: 400px){
  main{
    padding: 0 20px;
  }
}