* {
    font-family: "Helvetica";
}

@font-face {
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 400;
  src: url("font.woff2") format('woff2');
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

.linea {
    border: 1px solid black;
    width: 100%;
    position: absolute;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.title {
    text-align: center;
    background-color: white;
    z-index: 1;
    padding: 0 10px;
    font-size: 3rem;
    display: flex;
    align-items: center;
    column-gap: 10px;
}

@media (max-width: 600px){
  button {
    background-color: red;
  }  
}
@media (min-width: 600px){
  button {
    background-color: blue;
  }  
}