body {
    background-color: white;
    font-family: 'Amiamie';
    color: black;
    padding: 100px 100px 100px 100px;
    margin-bottom: 81px;
    justify-content: center;
    position: absolute;
    
}

/* header */

.header {
    background-color: #fffffff3;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    position: fixed;
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
    align-items: center;
    z-index: 100;
    transition: top 0.2s ease-in-out;
    
}

.logo {
    color: #000000;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;

}

.navigation a {
    position: relative;
    font-size: 16px;
    text-decoration: none;
    color: #000000;
    margin-left: 20px;
    font-weight: 400;
    justify-content: space-between;
}

.navigation a::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff0000;
    transition: .3s;

}

.navigation a:hover::before {
    width: 100%;
}

 #indicator {
       text-decoration: underline;
          text-decoration-color: red; /* Replace with desired color */
          text-decoration-thickness: 2px; /* Adjust thickness if needed */
          text-decoration-style: solid; /* Options: solid, double, dotted, dashed, wavy */
            text-underline-offset: 4px;
    }
/*Text*/

.text p {
    margin-bottom: 81px;
}

/*Form*/

.name input {
    width: 100%;
    margin-bottom: 8px;
    border-radius: 24px;
    border: 1px solid #ccc;
    padding: 10px;

}

.email input {
    width: 100%;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 16px;
    border: 1px solid #ccc;
}

.message input {
    width: 100%;
     /* Adjust height as needed */
    padding: 10px 10px 300px 10px;
    
    border: 1px solid #ccc;
    border-radius: 5px;
    vertical-align: top; /* Aligns the text to the top */
    box-sizing: border-box;
    resize: none; /* Prevents resizing of the textarea */
    line-height: 1em;
}

.submit input {
    width: 81px;
    align-items: center;
    padding: 8px 16px;
    border-radius: 32px;
    border: none;
    background-color: #000000;
    color: #fff;
    font-weight: 300;
    
    
}

.submit input:hover {
    transition: ease 0.2s;
    color: #000000;
    background-color: #fff;
    cursor: pointer;
}
/*Footer*/
footer {
    background-color: #000000;
    color: #fff;
    text-align: left;
    padding: 10px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}
