* {
    color: #757575;
    background-color: #FFF;
    font-family: "Inter";
}

#wrapper {
    margin-left: 100px;
    margin-right: 100px;
} 

header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 35px;
    height: auto;
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: #8FB964;
    text-decoration: none;
    margin-left: 0px;
}

.top {
    display: flex;
    align-items: center;
    gap: 52px;
}

nav a {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
    color: #000;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 49px;
}

a {
    text-decoration: none;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

.text,
.textarea {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

label {
    font-size: 1em;
    color: #757575;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
    width: 100%;
}

textarea {
    min-height: 80px;
}

input, textarea {
    border-radius: 2px;;
    color: #000;
}

input::placeholder,
textarea::placeholder {
    color: #CCC;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #8FB964;
    box-shadow: 0 0 5px #7A9E53;
}

button[type="submit"] {
    background-color: #4C92D2; 
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 153px; 
    height: 40px;
}

button[type="submit"]:hover {
    background-color: #1976D2;
}

h1 {
    font-size: 64px;
    color: #8FB964;
}

footer {
    margin-top: 30px;
}