@import url("./something.css");
/* @import url("./something.css"); */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap");

:root {
  --primary-color: #1f44ea;
  --secondary-color: #0e2795;
  --third-color: #07274b;
  --dark-color: #050f38;
  --light-color: #d9e0fc;
  --success-color: #5cb85c;
  --error-color: #d9534f;
  --light-blue: #d9f4fc;
  --blue: #1dbced;
  --dark-blue: #0f94bd;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

*:focus {
  outline: none;
}

body {
  font-family: "Lato", sans-serif;
  color: black;
  line-height: 1.8;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #333;
}

main {
  background: var(--light-blue);
  margin-left: 5%;
  padding-left: 190px;
}

.section {
  padding-bottom: 30px;
  padding-top: 0;
  position: relative;
}

/* aside */
aside {
  position: fixed;
  background: white;
  top: 0px;
  left: 0px;
  width: 190px;
  height: 100%;
  overflow: none;
  z-index: 1;
  text-align: center;
  padding: 0;
}

aside img {
  -webkit-filter: sepia(20%);
  filter: sepia(20%) contrast(80%) brightness(90%);
  margin-bottom: 2px;
  width: 100%;
}

.material-icons.md-36 {
  font-size: 36px;
}

aside a {
  display: block;
  padding: 15px 0;
  color: black;
  transition: all 0.35s;
  text-transform: uppercase;
  font-size: 0.9em;
  letter-spacing: 2px;
}

aside a:hover {
  background: var(--primary-color);
}

/* home */
#home.section {
  background: #a7ffeb;
  position: relative;
}

#home .container-home {
  width: 95%;
  text-align: center;
  position: relative;
  padding-top: 300px;
}

.overlay {
  background-color: rgba(26, 166, 190, 0.3);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

section h1 {
  font-weight: bold;
  font-size: 4em;
  letter-spacing: 4px;
}

section h2 {
  font-weight: 400;
  font-size: 1.5em;
  letter-spacing: 4px;
  color: black;
}

section h3 {
  font-weight: bold;
  font-size: 1em;
  letter-spacing: 4px;
}

.full-height {
  height: 100vh;
}

/* media */
/* Tablets and under */
@media (max-width: 768px) {
  .aside {
    width: 100px;
  }
  .main {
    padding-left: 100px;
    margin-left: 5%;
  }
}

/* Mobile */
@media (max-width: 500px) {
  aside {
    width: 80px;
  }
  main {
    padding-left: 80px;
    margin-left: 5%;
  }
}
