@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    box-sizing: border-box; /* Garante que padding e bordas não aumentem a largura */
    margin: 0;
    padding: 0;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    background-color: #e0e0e0;
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    background-color: #080808;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}
.btn-default p{
    color: #f0f0f0;
}

.btn-default:hover {
    background-color: #252525;
    color: #f0f0f0;
}

#home .title {
    color: #ffa600;
    font-size: 30px;
    font-weight: 600;
}

#home .description {
    font-size: 20px;
    font-weight: 300;
}