body {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    height: 100dvh;
    margin: 0;
    padding: 30px;
    font-family: Helvetica, Verdana, sans-serif;
}

header {
    margin-top: -30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    display: inline-block;
    transform: rotate(-10deg);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: black;
}

#home {
    transform: rotate(180deg);
}

#mousehome {
    display: inline-block;
    text-decoration: underline;
}

#mousehome:hover {
    transform: rotate(180deg);
}

#content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-end;
    padding: 40px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  max-width: 500px;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 4px;
  margin-bottom: 16px;
  box-sizing: border-box;
}

/* Style the button */
button {
  padding: 12px 24px;
  font-size: 16px;
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #444;
}

@media (max-width: 1024px) {
    #content {
        padding: 1.5em;
    }
}

@media (max-width: 768px) {
     header {
        flex-direction: column;
        margin-top: 15px;
        gap: 20px;
    }

    #title {
        display: flex;
        justify-content: flex-end;
        width: 100%;
        margin-right: -70px;
    }

    h1 {
        white-space: nowrap;
        margin-top: 20px;
        text-align: center;
        font-size: clamp(1.5rem, 5vw, 1.7rem);
    }

    #mousehome {
        transform: rotate(180deg);
    }
}