/* 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: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 10px;
}

.resume {
  max-width: 300px;
  padding: 10px;
  background: white;
  img {
    width: 70px;
    border-radius: 50%;
    border: 4px solid #667eea;
  }
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.resume h1 {
  margin: 10px 0;
  font-size: 20px;
  color: #333;
}
.resume h2 {
  border-bottom: 2px solid #667eea;
  display: inline-block;
  padding-bottom: 5px;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 16px;
  color: #333;
}
.resume p {
  color: #555;
  font-size: 14px;
}

.resume a {
  text-decoration: none;
  color: #555;
}

.skills {
  .bar {
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin: 5px 0;
    overflow: hidden;
  }
  .sql {
    background-color: #838282;
  }
  .java {
    width: 95%;
    background-color: #6c6c6c;
  }
  .req {
    background-color: #555;
  }
}

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

@media screen and (min-width: 1024px) {
  .resume {
    max-width: 900px;
     padding: 20px;

  }
  .resume h1 {
    font-size: 24px;
  }
  .resume h2 {
    font-size: 20px;
  }
  .resume p a {
    font-size: 16px;
  }
   
}
