	body {
	font-family: Courier New, monospace;
    }

    header {
    position: sticky;
    top: 0;
    z-index:10000;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    }
   
    a {
    text-decoration: none;
    border: none;
	}

	.icon-wrapper {
    display: flex;
    margin-left: auto;
	}

	.navicon {
    width: 100px;
    height: 100px;
    align-items: center;
    margin: -18px;
	}
    
    .hero {
    text-align: center;
    padding: 100px 60px;
    background-color: #FFE8F3;
    }
    
    .hero p {
    margin-bottom: 40px;
    margin-top: 20px;
    }

    .cta {
    padding: 10px 20px;
    background-color: #ff66ba;
    color: white;
    border: none;
	}
	
	.row {
	display: flex;
	}
	
	.row div {
	width: 33.33%;
	padding: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	}

	.row img {
	width: 100%;
	height: auto;
	}

    .text {
	text-align: center;
    padding: 20px;
	}

    .menuspacing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
    }
	
	.originspacing {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    align-items: start;
    }
    
    .originimage {
    margin-left: 100px;
    }
    
	.originstext {
	text-align: left;
	margin-left: 450px;
	margin-right: 100px;
	}
	
	form {
	text-align: center;
	margin-top: 20px;
	}
	
	fieldset {
	border: none;
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 10px 15px;
	align-items: center;
	justify-content: center;
	}
	
	label {
	text-align: right;
	}
	
	input,textarea {
	padding: 10px;
	border-radius: 10px;
	border: none;
	background-color: #ffe9f6;
	width: 250px;
	}
	
	input:focus,textarea:focus {
	outline: 2px solid pink;
	}
	
	input[type="submit"] {
	grid-column: span 2;
	justify-self: left;
	background-color: #ff66ba;
	color: white;
	cursor: pointer;
	margin-left: 145px;
	}
	
	.contact-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px;
	}

	.contact-info {
    text-align: left;
    width: 40%;
	}

	.contact-form form {
    margin-top: 0;
	}
	
	.socialmediaicons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
    margin-bottom: 30px;
    }
   
    footer {
    text-align: center;
    padding: 20px;
    background-color: #FFE8F3;
    }