* {
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

iframe, img {
    max-width: 100%;
}

nav {
    background-color: orange;
    padding: 16px;
    display: flex;
    justify-content: space-around;
    margin-bottom: 16px;
    font-size: 10px;
}

nav a {
    color: white;
    text-decoration: none;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    padding: 12px;
}

.hero h1 {
    font-size: 35px;
    text-align: center;
}

.sub-hero {
    margin-top: 60px;
    background-color: orange;
    padding: 60px 20px;
    display: flex;
    gap: 20px;
    flex-direction: column;
    align-items: center;
}

.sub-hero h2 {
    text-align: center;
    font-size: 25px;
}

.sub-hero h2 span {
    color: blue;
}

.sub-hero img {
    border-radius: 50px;
}

#hairstyles {
    margin: 60px auto 0px auto;
    padding: 0px 10px;
}

#hairstyles h2 {
     text-align: center;
     color: orange;
     margin-bottom: 20px;
}

#hairstyles ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

#pricing {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0px 20px;
}

#pricing h2 {
    text-align: center;
    color: orange;
}

#pricing table {
    border-collapse: collapse;
}

#pricing table th, td {
    border: 1px solid #ddd;
    text-align: center;
    padding: 8px;
    width: 50%;
}

#pricing table tr:nth-child(even) {
    background-color: #ddd;
}

#media {
    background-color: black;
    padding: 60px 20px;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

#media h2 {
    text-align: center;
    color: orange;
}

#media h4 {
    color: white;
}

#about {
    margin-top: 60px;
    padding: 0px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#about h2 {
    color: orange;
}

#about p {
    font-size: 20px;
}

#contact {
    background-color: orange;
    margin-top: 60px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

#contact h2 {
    color: white;
    font-size: 40px;
}

#contact h3 {
    text-align: center;
}

#contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#contact form label {
    font-size: 18px;
}

#contact form input, #contact form textarea {
       padding: 10px 12px;
       border: orange;
       border-radius: 4px;
}

#contact form button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 12px;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
}