body {
    margin: 0;
    padding: 0;
    font-family: 'al-fresco', 'Arial', sans-serif;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: #c1bd93;
    color: black;
}

.background {
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.background-img {
    background: url('./workbench.png');
    background-position: center;
    background-size: cover;
    background-blend-mode: multiply;
    transition: opacity 2s ease-in;
    opacity: 0.2;
3}

.content {
    position: absolute;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.logo-img {
    width: 90vw;
    max-width: 30rem;
    height: auto;
}

.width {
    max-width: 35rem;
    width: 90vw;
}

.signup {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    font-family: 'Arial';
}

.response {
    background-color: rgba(109, 110, 113, 0.6); /* Grey from logo sub text */
    border-radius: 5px;
    padding: 0.5rem;
    margin-top: 0.2rem;
}

h2 {
    font-size: 4rem;
    margin: 0;
}

p {
    font-family: "Charm", sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    text-align: center;
    margin: 0;
}

form {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

input[type=email] {
    padding: 10px;
    font-size: 1rem;
    background-color: rgba(109, 110, 113, 0.5); /* Grey from logo sub text */
    border: none;
    margin-right: 0.1rem;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    outline: none;
}

input[type=email]:focus {
    background-color: rgba(109, 110, 113, 0.8); /* Grey from logo sub text */
}

button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    background-color: rgba(109, 110, 113, 0.5); /* Grey from logo sub text */
    border: none;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    cursor: pointer;
}

button:hover {
    background-color: rgba(109, 110, 113, 0.8); /* Grey from logo sub text */
}

a {
    color: black;
    font-family: "Charm", sans-serif;
    text-decoration: none;
    font-size: 2rem;
    display: flex;
}

#instagram {
    width: 10vw;
    max-width: 40px;
    height: auto;
    object-fit: contain;
    margin-right: 1rem;
}

.htmx-swapping {
  opacity: 0;
  transition: opacity 10.5s ease-out;
}

.htmx-settling {
  opacity: 1;
  transition: opacity 10.5s ease-in;
}
