@font-face {
    font-family: 'Pacifico-Regular';
    src: url('../font/Pacifico-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Borel-Regular';
    src: url('../font/Borel-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-image: url("../image/backgr1.jpg");
    background-size: cover;
    background-attachment: scroll;
}

:root {}

/*header*/

#logo {
    margin-left: auto;
    margin-right: auto;
    width: 10%;
    display: block;
}

#header {
    margin: 2%;
    min-height: 10%;
}

.header_nav_link:visited {
    text-decoration: none;
    color: rgb(0, 0, 0);

}

#header_nav {
    margin: 2%;
    display: flex;
    flex: 1 1 auto;
    flex-flow: row nowrap;
    justify-content: center;
}

.header_nav_link {
    margin: 1%;
    font-family: Pacifico-Regular, Arial, Helvetica, sans-serif;
    color: rgb(0, 0, 0);
    font-size: 32px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    border-radius: 5pt;
    box-shadow: 0px 0px 100px 100px rgba(255, 255, 255, 0.1);
}


/*main*/

main {
    margin: 2%;
}

.form
{
    margin: auto;
    margin-left: 25%;
    display: block;
}

/*section*/


.main_section {
    margin: 1%;
    margin-top: 5%;
    padding-top: 3%;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 5pt;
    box-shadow: 0px 0px 100px 100px rgba(255, 255, 255, 0.1);
}

.main_section_header {
    text-decoration-line: underline ;
}

/*article*/

article {
    margin: 1%;
}

/*h1*/

h1 {
    text-align: center;
    margin: auto;
    width: auto;
    font-family: Borel-Regular, Arial, Helvetica, sans-serif;
}

/*p*/
p {
    text-align: center;
    margin: auto;
    width: auto;
}

/*cupcakes*/

#cupcakes_container {

    display: flex;
    flex: 1 1 auto;
    flex-flow: row wrap;
    justify-content: center;
}

#cupcakes_container>article {
    max-width: 15%;
    justify-self: center;
    align-self: center;
    border-radius: 5pt;
}

#cupcakes_container>article>img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2%;
    max-width: 75%;

}

/*weddingcakes*/

#wedding_cakes_container {

    display: flex;
    flex: 1 1 auto;
    flex-flow: row wrap;
    justify-content: center;
}

#wedding_cakes_container>article {
    max-width: 15%;
    justify-self: center;
    align-self: center;
    border-radius: 5pt;
}

#wedding_cakes_container>article>img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 75%;

}

/*footer*/

.footer_nav_link:visited {
    text-decoration: none;
    color: rgb(0, 0, 0);
}

#footer_nav {
    display: flex;
    flex: 1 1 auto;
    flex-flow: row nowrap;
    justify-content: center;
}

.footer_nav_link {
    margin: 1%;
    color: rgb(0, 0, 0);
    backdrop-filter: blur(10px);
    border-radius: 5pt;
    box-shadow: 0px 0px 100px 100px rgba(255, 255, 255, 0.1);
}

footer {
    margin: 2%;
    min-height: 20%;
}