/*
This is the beggining of the Sebasorova's website main stylesheet.
*/

/* Estilos Generales */
body {
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 0% 0%;
  background-image: url('../gif/background.gif');
  height: 100vh;
  padding: 0;
  margin: 0;
  image-rendering: pixelated;
  color: white;
  font-family: 'Roboto', sans-serif;
}

*, ::before, ::after {
  border-width: 0px;
  border-style: solid;
  box-sizing: border-box;
  overflow-wrap: break-word;
  border: 0;
  outline: 0;
}

a, a:visited, a:hover, a:active {
  color: white;
}

/* Divs */

div {
  display: block;
  background-color: rgba(0, 0, 14, 0.7);
  font-weight: 300;
  border-radius: 14px;
}

.main-description {
  position: fixed;
  text-align: center;
  top: 16%;
  right: 32%;
  height: inherit 25vh;
  width: 40vw;
  padding-bottom: 20px;
}

.main-social {
  position: fixed;
  text-align: center;
  top: 64%;
  right: 32%;
  height: auto;
  width: 40vw;
  font-size: 32px;
  padding-bottom: 10px;
  padding-top: 10px;
}

/* Text tags */

.title {
  font-weight: 600;
  font-size: 32px;
}

.p {
  font-weight: 300;
  font-size: 20px;
  padding: 20px;
}

/* Media Tags */

.avatar {
  object-fit: cover;
  border-radius: 9999px;
  width: 100%;
  height: 100%;
}

.avatar-container {
  width: 8rem;
  height: 8rem;
  position: relative;
  align-items: center;
  display: inline-flex;
}

/* Responsiveness (width) */
/* Website originally designed for a 1544px wide screen (Laptop L) */

/* For screens from 320px to 240px (small phones) */
@media only screen and (max-width: 320px) and (min-width: 240px) {
  .main-description {
    width: 85vw;
    top: 4%;
    right: 7%;
  }

  .main-social {
    right: 7%;
    width: 85vw;
    margin: 0 auto;
    top: 87%;
    font-size: 24px;
  }
}

/* For screens from 425px to 376px (medium phones) */
@media only screen and (max-width: 375px) and (min-width: 321px) {
  .main-description {
    width: 75vw;
    top: 4%;
    right: 14%;
  }

  .main-social {
    right: 14%;
    width: 75vw;
    margin: 0 auto;
    top: 87%;
    font-size: 24px;
  }
}

/* For screens from 636px to 376px (wide phones) */
@media only screen and (max-width: 636px) and (min-width: 376px) {
  .main-description {
    width: 70vw;
    right: 16%;
  }

  .main-social {
    right: 16%;
    width: 70vw;
    margin: 0 auto;
    top: 80%;
    font-size: 24px;
  }
}

/* For screeens from 426px to 637px wide (tablets) */
@media only screen and (max-width: 768px) and (min-width: 637px) {
  .main-description {
    width: 65vw;
    right: 20%;
  }

  .main-social {
    right: 20%;
    width: 65vw;
    margin: 0 auto;
    top: 77%;
    font-size: 24px;
  }
}

/* For screens from 425px to 1024px wide (laptop) */
@media only screen and (max-width: 1024px) and (min-width: 769px) {
  .main-description {
    width: 60vw;
    right: 22%;
  }

  .main-social {
    right: 22%;
    width: 60vw;
    margin: 0 auto;
    top: 68%;
    font-size: 24px;
  }
}