@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;

}

nav {
    padding-top: 20px;
    display: flex;
    gap: 50px;
    justify-content: center;
    font-size: 18px;
    padding-bottom: 100px;
}

nav a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    color: black;
}

nav a:hover {
    color: darkorchid;
}

main {
    justify-content: center;
}

section {
    max-width: 1080px;
}


#contact {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

#contact h1 {
    text-align: center;
    margin-bottom: 20px;
}

#contact label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#contact input,
#contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    resize: vertical; /* Allow vertical resizing only */
}

#contact button {
    width: 100%;
    padding: 10px;
    background-color: darkorchid;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

#contact button:hover {
    background-color: purple;
}
