/* Definição de fontes   */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-VariableFont_wdth\,wght.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: #ffffff;
  color: #0e1014;
  margin: 20px 30px;
}

h1 {
  font-size: 20px;
  margin-bottom: 15px;
}

h2 {
  font-size: 16px;
  margin-bottom: 10px;
}

h3 {
  font-size: 12px;
  margin-bottom: 10px;
}

p {
  font-size: 12px;
  margin-bottom: 15px;
  text-align: justify;
}

ul {
  font-size: 12px;
  margin-left: 30px;
  margin-bottom: 25px;
}

.tech .tecnologia {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-top: 15px;
  width: 100%;
  align-content: center;
  ul {
    margin-left: 20px;
  }
}

.button {
  margin-top: 30px;
  display: inline-block;
  text-align: center;
  padding: 10px 40px;
  background-color: #555;
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  &:hover {
    background-color: #323232;
  } 
}

@media print {
  button {
    display: none;
  }
  body {
    background: white;
  }
  .resume {
    box-shadow: none;
    button {
      display: none;
    }
  }
}

@media screen and (min-width: 768px) {
  .resume {
    max-width: 648px;
    padding: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .cv1 {
    max-width: 900px;
    padding: 20px;
  }
  .cv1 h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .cv1 h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .cv1 h3 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  p {
    font-size: 14px;
    margin-bottom: 15px;
    text-align: justify;
  }

  ul {
    font-size: 14px;
    margin-left: 30px;
    margin-bottom: 25px;
  }
}
