@import url('https://fonts.googleapis.com/css2?family=Lavishly+Yours&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');

html {
    background-color: #f1bdd4;
}

a {
    text-decoration: none;
    color: black;
    font-size: 3em;
    font-family: "Lavishly Yours", cursive;
    font-weight: 400;
    font-style: normal;
}

footer {
    margin-top: 10%;
}

h1 {
    text-align: center;
    text-decoration: underline;
    font-size: 3em;
    font-family: "Poiret One", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-top: 5%;
    margin-bottom: 5%;
}

#logo {
    display: block;
    width: 25%;
    height: auto;
    margin-top: 2%;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
}

nav ul {
    display: flex;
    list-style-type: none;
    text-align: center;
    padding: 0;
    justify-content: space-evenly;
    background-color: #f7f4ef;
}

#rings, #gypsy {
    display: block;
    width: 50%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5%;
    margin-bottom: 5%;
}

.sect1 {
    text-align: center;
    margin-top: 5%;
    font-family: "Poiret One", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-left: 25%;
    margin-right: 25%;
}

.sect2 {
    font-family: "Poiret One", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin-left: 25%;
    margin-right: 25%;
}

#sect3 {
    margin-top: 5%;
    margin-bottom: 5%;
}

.services {
    margin-top: 5%;
    font-size: 2em;
}

#service-list {
    font-size: 1rem;
}

#welcome, .about{
    font-size: 2em;
}

#sect3 h2 {
    text-align: center;
    font-family: "Poiret One", sans-serif;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f7f4ef;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-family: "Poiret One", sans-serif;
    font-size: 1.2em;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: "Poiret One", sans-serif;
    font-size: 1em;
    box-sizing: border-box;
}

.form-button {
    background-color: #f1bdd4;
    color: black;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-family: "Lavishly Yours", cursive;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    margin: 0 auto;
}

.form-button:hover {
    background-color: #e0a8b8;
}

@media (max-width: 768px) {
    a {
        font-size: 2em;
    }

    h1 {
        font-size: 2em;
    }

    #logo {
        width: 50%;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 10px 0;
    }

    .sect1, .sect2 {
        margin-left: 10%;
        margin-right: 10%;
    }

    #rings, #gypsy {
        width: 80%;
    }

    .services {
        font-size: 1.5em;
    }

    #welcome, .about {
        font-size: 1.5em;
    }

    #sect3 h2 {
        font-size: 2em;
    }

    .contact-form {
        padding: 15px;
    }

    .form-label {
        font-size: 1em;
    }

    .form-input, .form-textarea {
        font-size: 0.9em;
    }

    .form-button {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    a {
        font-size: 1.5em;
    }

    h1 {
        font-size: 1.5em;
    }

    #logo {
        width: 70%;
    }

    .sect1, .sect2 {
        margin-left: 5%;
        margin-right: 5%;
    }

    #rings, #gypsy {
        width: 90%;
    }

    .services {
        font-size: 1.2em;
    }

    #welcome, .about {
        font-size: 1.2em;
    }

    #sect3 h2 {
        font-size: 1.5em;
    }

    .contact-form {
        padding: 10px;
    }

    .form-label {
        font-size: 0.9em;
    }

    .form-input, .form-textarea {
        font-size: 0.8em;
    }

    .form-button {
        font-size: 0.9em;
    }
}