main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
div.headers{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: var(--top-margin);
}
h1.title{
    font-family: var(--font-boldonse), sans-serif;
    font-size: clamp(24px, 5vw, 38px);
    background: linear-gradient(60deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    text-align: center;
}
span.ideas{
    font-family: var(--font-lobster), sans-serif;
    font-size: calc(clamp(24px, 5vw, 38px) + 28px);
}
p.subtitle{
    font-size: 20px;
    background: linear-gradient(60deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}
form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    padding: 5px;
    border-radius: 8px;
}
input{
    width: clamp(250px, 90vw, 500px);
    height: 60px;
    padding: 10px 10px 0 10px;
    border-radius: 8px;
    border: 1px solid dimgrey;
    background-color: transparent;
    font-size: 18px;
}
input:hover{
    border: 1px solid var(--theme-color);
}
input:focus{
    outline: none;
    border: 1px solid var(--theme-color);
}
textarea{
    width: clamp(250px, 90vw, 500px);
    height: 400px;
    resize: none;
    border-radius: 8px;
    border: 1px solid dimgrey;
    background-color: transparent;
    font-size: 18px;
    padding: 20px 10px 0 10px;
}
textarea:hover{
    border: 1px solid var(--theme-color);
}
textarea:focus{
    outline: none;
    border: 1px solid var(--theme-color);
}
div.input-container {
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
}
div.input-container label {
    position: absolute;
    margin: 0;
    top: 4px;
    left: 12px;
    font-size: 12px;
    color: dimgrey;
}
form button{
    cursor: pointer;
    width: clamp(250px, 90vw, 500px);
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--secondary-color);
    background-color: var(--secondary-color);
    color: var(--text-color-light);
    font-weight: bold;
    font-size: 16px;
}