*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Montserrat",sans-serif;
}
header{
    display: flex;
    justify-content: flex-end;
    align-items:center;
    padding: 40px 5%;
    background: transparent;
    
}
.logo{
    cursor: pointer;
    margin-right: auto;

    
}
li,
a,
button{
     font-weight: 500;
     font-size: 20px;
     text-decoration: none;
     color: rgb(0, 0, 0);
     font-family:sans-serif;
}
nav ul li{
    display: inline-block;
    padding: 0px 40px;
}
nav ul li a{
    transition: all 0.3s ease 0s;
}
nav ul li a:hover{
    color: rgb(0, 0, 0);
    transition: all 0.3s ease 0s;
    background-color: rgb(217, 212, 212);
    border: none;
    padding: 10px 15px;
}
header > button{
    padding: 10px 25px;
    background-color: red;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    margin-top: 35px;
}
header > button:hover{
    background-color: rgba(255, 143, 143, 0.8);
}
body{
    
    background: url('Tea\ plantation\ featuring\ cameron\,\ highland\,\ and\ malaysia.jpg') no-repeat center center / cover;
    width: 100%;
    background-position-y: top;
    display: block;
    position: relative;
    z-index: 1;     
}
.content {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    
}
.hero{
    padding: 10px -35%;
    margin-right:25%;
}

.hero h1 {
    padding-right: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.hero p {
    margin: 40px -2px;
    font-weight: 400;
    line-height: 2rem;
    font-size: x-large;
    font-family: 'Times New Roman', Times, serif;
    text-decoration: none;

}

label {
    display: block;
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: bold;
    color: #242f24;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 30%;
    padding: 10px;
    margin-bottom: 5px;
    background-color:transparent;
    border: 1px black;
    box-sizing: none;
    font-size: 20px;
    color: rgb(0, 0, 0);
}

button {
    background-color: #10d317;
    color: white;
    border: none;
    padding: 10px 5%;
    font-size: 20px;
    cursor: pointer;
    border-radius: 20px;
    margin-bottom: 50px;
}

button:hover {
    background-color: #4ce654;
}
.container{

    padding: 0px 5%;
}
.container h1{
    background-color: rgb(215, 246, 206);
    padding: 5px 10%;
    width: 30%;
    border-radius: 25px;
    margin-bottom: 25px;
    
}

