* {
    padding: 0;
    margin: 0;
    color: white;
}

@font-face {
    font-family: "titleFont";
    src: url("IslandMoments-Regular.ttf");
}

@font-face {
    font-family: "Merienda";
    src: url("Merienda-Bold.ttf");
}

@font-face {
    font-family: "titleFont3";
    src: url("Merienda-Regular.ttf");
}

@font-face {
    font-family: "titleFont4";
    src: url("Playball-Regular.ttf");
}

body {
    background-color: rgb(216, 57, 57);
    font-family: Merienda;
}

header {
    text-align: center;
    padding: 0%;
    font-size: 80px;
    font-family: titleFont;
}


.info-container {
    display: flex;
    min-height: 30vw;
    margin-bottom: 0.5vh;
}

.info-container h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.element-content {
    height: 80%;
    font-size: 2rem;
    line-height: 3rem;
}

.info-element {
    flex: 1 1 0;
    width: 0;
    padding: 25px;
    margin: 25px;
    border-radius: 25px;
}

.right-element {
    text-align: right;
}

.left-element {
    text-align: left;
}

#safran-spice {
    background-image: url("../images/le_safran.jpg");
    background-position: center center;
    background-size: cover;
}

#flower {
    background-image: url("../images/flower.JPG");
    background-position: center center;
    background-size: cover;
}

#flower2 {
    background-image: url("../images/geneva.jpg");
    background-position: center center;
    background-size: cover;
}

#safran-spice .right-element {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
}

#flower .left-element {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
}

#flower2 .right-element {
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
}

#flower2 .element-content {
    display: block;
    align-items: center;
    font-size: 2rem;
    text-align: left;
}

#flower2 h2 {
    text-align: left;
    width: 85%;
    margin-left: 15%;
}

#flower2 .element-content a {
    text-decoration: none;
}

button:hover {
    cursor: pointer;
}

#flower2 button {
    display: block;
    min-width: 70%;
    height: fit-content;
    padding: 15px;
    font-size: 50px;
    font-weight: 800;
    margin: auto;
    border: none;
    border-radius: 15px;
    background-color: rgb(71, 5, 126);
    transition-duration: 0.4s;
}

#flower2 button:hover {
    background-color:teal;
}

#flower2 .element-content button:active {
    background-color:cadetblue;
    transform: translateY(4px);
}


#quality {
    margin-left: 12%;
    list-style: circle;
}

.contact-section {
    width: 100%;
    height: 30vh;
}

.contact-text {
    width: 85%;
    margin-left: 15%;
    margin-bottom: 50px;
}


.transition-a {
    border-bottom: 5vw solid rgb(216, 57, 57);
    border-left: 100vw solid transparent;
}

.transition-b{
    border-bottom: 5vw solid transparent;
    border-left: 100vw solid rgb(216, 57, 57)
}


@media only screen and (max-width: 450px) {
    header {
        text-align: center;
        padding: 10px 0;
        font-size: 25px;
    }
    
    .info-container {
        display: block;
        margin-bottom: 2.5vw;
    }

    .info-container h2 {
        font-size: 3rem;
        margin-bottom: 10px;
    }

    .info-element {
        display: block;
        padding: 0;
        box-sizing: border-box;
        text-align: center;
        margin: 0;
        border-radius: 0;

    }

    .info-element p{
        text-align: justify;

    }

    #quality {
        text-align: left;
    }

    #safran-spice .right-element {
        width: 100vw;
        padding: 15px;
        backdrop-filter: none;
    }
    
    #flower .left-element {
        width: 100vw;
        padding: 15px;
        backdrop-filter: none;

    }
    
    #flower2 .right-element {
        width: 100vw;
        padding: 15px;
        backdrop-filter: none;

    }

    #flower2 h2 {
        text-align: center;
        width: 100%;
        margin-left: 0;
    }

    .contact-text {
        width: 100%;
        margin-left: 0;
        margin-bottom: 50px;
    }
}