/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f1ed;
    color: #6f8c7b;
}

/* HEADER */
header {
    background-color: #b79b84;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    font-size: 48px;
    color: var(--Cool-Green-Web, #748A80);
-webkit-text-stroke-width: 1.5px;
-webkit-text-stroke-color: #000;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 0.96px;;
}

/* NAV */
nav a {
    text-decoration: none;
    color: #f5f5f5;
    margin-left: 25px;
    font-size: 20px;
    font-weight: bold;
}

nav a:hover {
    color: #2e2e2e;
}

/* MAIN */
main {
    padding: 60px 80px;
}

/* PAGE TITLE */
main h1 {
  font-size: 60px;
    margin-bottom: 50px;
    color: #748A80;
-webkit-text-stroke-width: 1.5px;
-webkit-text-stroke-color: #000;
font-style: normal;
font-weight: 700;
line-height: normal;
letter-spacing: 0.96px;
}

/* CONTACT ROWS */


.contact-row {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.contact-label {
    width: 200px;
    color: #748A80;
font-size: 42px;
font-style: normal;
font-weight: 700;
line-height: normal;
margin-right: 170px;
}

.contact-box {
    background: linear-gradient(to right, #9eb59c, #7f9c87);
    padding: 15px 30px;
    min-width: 400px;
    padding: 15px 30px;
    font-size: 28px;
    font-weight: bold;
    color: black;
    text-align: center;
    margin-right: 100px;
}

/* RIGHT SIDE (IMAGE) */
aside {
    width: 30%;
    text-align: center;
}

/* IMAGE */
aside img {
    width: 90%;
    max-width: 400px;
}

/* FOOTER */
footer {
    background: linear-gradient(to right, #9eb59c, #7f9c87);
    padding: 60px;
    margin-top: 60px;
}