* {
    margin: 0px; padding: 0px; box-sizing: border-box;
}

nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background-color: #da9489;
    font-family: 'Poppins', sans-serif;
}

.logo {
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 20px;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 40%;
}

.nav-links a {
    color:rgb(255, 255, 255);
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 14px;
}

.nav-links li {
    list-style: none;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: rgb(255, 255, 255);
    margin: 5px;
    transition: all 0.3s ease;
}

.main {
    max-width: 100%;
    height: auto;
    background-color: #FFF;
}

.main p {
    font-family: 'Poppins', sans-serif;
    margin: 30px;
	margin-left: 35px;
}

.s-inner > figure > image {
    height: 100%;
    box-sizing: border-box;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
}

.main h1 {
	font-family: 'Poppins', sans-serif;
	text-align: center;
	font-size: 20px;
	margin-top: 25px;
}

.wrapper {
    max-width: 100%;
    height: auto;
    overflow: hidden;
}

.contact-form {
    max-width: 50%;
}

form .submit {
    padding-bottom: 25px;
    padding-left: 25px;
    margin-left: 25px;
}



.footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background-color: #da9489;
    font-family: 'Poppins', sans-serif;
}

.footer p {
    font-size: 12px;
    color: white;
}


/* Tablet Resize */

@media screen and (max-width: 1024px){
 .nav-links { 
    width: 60%;
}

.logo {
    font-size: 14px;
}

}

/* Mobile Resize */

@media screen and (max-width: 768px){

    .contact-form {max-width: 100%;
    }

body {
    overflow-x: hidden;
}

.logo {
    font-size: 12px;
}

.main h1{
	margin: 8px;
}

 .nav-links {
     position: absolute;
     right: 0px;
     height: 92vh;
     top: 8vh;
     background-color: #da9489;
     display: flex;
     flex-direction: column;
     align-items: center;
     width: 50%;
     transform: translateX(100%);
     transition: transform 0.5s ease-in;
 }

 .burger {
     display: block;
 }
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade{
    from{
        opacity: 1;
        transform: translateX(50px);
    }
    to{
        opacity: 0;
        transform: translateX(0px);
    }
}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}

.toggle .line2{
opacity: 0;
}

.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}


/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #45a049;
}

/* Add a background color and some padding around the form */
.container {
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px;
}

