body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: center;
    margin-top: 0;
    padding-top: 0;
    flex-wrap: nowrap;
}

.wrapper {
    display: flex;
    align-items: flex-end;
    width: 100%;
}

.name-logo {
    display: flex;
    align-items: center;
    margin-top: 0;
    padding-top: 0;
}

.name-logo .name {
    margin-top: 20px;
    margin-bottom: 5px;
    margin-left: 90px;
    color: midnightblue;
    padding-left: 0;
    padding-top: 0;
    font-size: 45px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-weight: 10px;
}

.name-logo .dot {
    margin-top: 0;
    margin-left: 1px;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 10px;
    font-size: 60px;
    color: blue;
}

.trapezium {
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(to right, cornflowerblue, aqua, lightblue);
    width: 1500px;
    height: 100vh;
    clip-path: polygon(0 0, 900px 0, 1075px 100%, 0 100%);
    z-index: -5;
}

.navlinks {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 0;
    margin-right: 0;
    height: 60px;
    padding-left: 700px;
    padding-right: 100px;
    padding-bottom: 3px;
    position: relative;
    gap: 95px;
    z-index: 2;
    white-space: nowrap;
}

.navlinks a {
    position: relative;
    display: inline-block;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin-left: 20px;
    text-decoration: none;
    padding-bottom: 2px;
    color: darkgray;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.navlinks a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease;
    pointer-events: none;
}

.navlinks a:hover {
    color: navy;
}

.navlinks a:hover::after {
    width: 100%;
}

.heading {
    display: flex;
    font-size: 55px;
    font-family: 'Goldman', sans-serif;
    padding-top: 10px;
    padding-left: 100px;
}

label {
    display: block;
    align-items: center;
    margin-left: 150px;
    margin-top: 40px;
}

label[for="message"] {
    margin-top: 40px;
    margin-left: 250px;
}

.contact-form {
    display: flex;
    gap: 5px;
}

.contact-form .left-side,
.contact-form .right-side {
    display: flex;
    flex-direction: column;
    position: static;
}

label[for="name-input"],
label[for="dob"],
label[for="email"],
label[for="message"] {
    font-size: 18px;
}

.ast {
    color: red;
    vertical-align: top;
}

input[type="text"],
input[type="date"],
input[type="email"] {
    width: 300px;
    padding: 10px;
    border: 2px solid gray;
    border-radius: 3px;
    box-sizing: border-box;
    margin-left: 150px;
    margin-top: 5px;
    margin-right: -100px;
    cursor: pointer;
}

textarea {
    width: 350px;
    height: 200px;
    padding: 10px;
    border: 2px solid gray;
    border-radius: 5px;
    box-sizing: border-box;
    margin-left: 250px;
    margin-top: 5px;
    resize: none;
}

:placeholder-shown {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 14px;
    color: darkgray;
}

button {
    width: 100px;
    margin-top: 275px;
    padding: 10px 20px;
    margin-left: 500px;
    text-align: center;
    margin-top: -5px;
    border: none;
    background: navy;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    cursor: pointer;
    transition: background-color 0.3 ease;
}

button:hover {
    background: blue;
    transition: 0.3 ease;
}