/* RESET */
html {
  box-sizing: border-box;
  font-size: 16px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ELEMENTS */
body {
  background-color: #414042;
  font-family: "Rubik", sans-serif;
}

p {
  color: white;
}
a {
  color: #a0dae1;
  text-decoration: none;
}

ul {
  color: white;
  list-style: none;
  bottom: 2em;
  padding: 0;
}

@media (min-width: 1200px) {
  ul {
    display: flex;
    flex-direction: row;
  }
}

.container {
  width: 100%;
  min-width: 300px;
  height: 90vh;
  padding: 25px 0 0 25px;
  margin: 0 auto;
  display: flex;
  /* border: 1px solid red; */
  flex-direction: column;
  justify-content: space-between;
}

.main-text {
  font-size: 2.5rem;
}

.li-text {
  font-size: 1.25rem;
  padding-top: 0.5em;
}

.separator {
  display: none;
}

@media (min-width: 500px) {
  .container {
    height: 100vh;
  }
  .main-text {
    font-size: 3.5rem;
  }
  .li-text {
    font-size: 1.5rem;
  }
}
@media (min-width: 800px) {
  .container {
    padding: 45px 0 0 45px;
  }
  .main-text {
    font-size: 4.5rem;
  }
  .li-text {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .main-text {
    font-size: 5.5rem;
  }
  .li-text {
    font-size: 1.5rem;
    padding: 0 0.3em;
    text-align: center;
  }
  .separator {
    display: block;
    margin-top: 5px;
  }
}

.azul {
  font-weight: 500;
  color: #a0dae1;
}

.email {
  cursor: pointer;
}

#emailAlert {
  /* border: 1px solid magenta; */
  font-size: 0.8rem;
  padding-left: 1em;
  color: rgba(255, 255, 255, 0);
  cursor: default;
  transition-duration: 800ms;
  transition-timing-function: ease-out;
}
/* ************/
/* PORTAFOLIO */
/* ************/

.main {
  width: fit-content;
  margin: 45px auto;
}

.main-portfolio {
  /* border: 1px solid magenta; */
  display: flex;
  flex-direction: column;
  text-align: center;
}
.main-portfolio img {
  padding-bottom: 15px;
  border-radius: 30px;
}

h3 {
  font-size: 1.25em;
  text-align: left;
  /* margin: 0; */
  padding-bottom: 10px;
  color: white;
}
