* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: "Hammersmith One", sans-serif;
  font-weight: 400;
  font-style: normal;
    line-height: 1.6;
    width: 100%;
    background-color: #ece7ed;
    font-size: 1rem;
    overflow-x: hidden;
    text-align: center;
    display: grid;
    min-height: 100dvh;
    grid-template-rows: auto 1fr auto;
}
.acerca, .preguntas{
    display: flex;
    flex-direction: column;
    margin: 50px;
    gap: 20px;
}

.acerca h2{
    border-bottom: 2px solid #f9a1a9;
}

.aroma{
    color: #f9a1a9;
    font-weight: bold;
}

.navegador i{
    color: black;
    display: flex;
    position: fixed;
    top: 10px;
    left: 10px;
    cursor: pointer;
    font-size: 1.3rem;
}

.border {
    border-bottom: 2px solid #f9a1a9;
}

.respuestas {
    display: none;
}

.respuestas-active {
    display: block;
}

.marca {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5px;
    padding: 10px;
    background-color: #f9a1a9;
    color: white;
}