/*----------------------------------*/
/*            Copy paste SECTION    */
/*----------------------------------*/

@media screen and (min-width: 700px) {
}


/*----------------------------------*/
/*           Main Code              */
/*----------------------------------*/


html,body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align items to the top */
    height: auto;
    font-family: 'arial' , sans-serif;
}

p {
    margin: 0;
    padding: 0;
    font-size: 12px;
}

h1, h2, h3 {
    margin: 0;
}

.container {
    margin: 5px;
    width: 98vw;
    margin-top: 0px;
}


.lavishly-yours-regular {
    font-family: "Lavishly Yours", cursive;
    font-weight: 400;
    font-style: normal;
}
  


@media screen and (min-width: 700px) {
    .container {
        width: 1200px;
        margin-top: 0px;
}
}


/*----------------------------------*/
/*            Header SECTION    */
/*----------------------------------*/

.header {
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo {
    width: 30vw;
    height: auto;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.logo img {
    object-fit: cover;
    width: 20vw;
}

.menubar {
    width: 80vw;
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.menubar a{
    text-decoration: none;
}

.background {
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(140, 248, 97, 0.5), rgba(255, 255, 255, 0));
    filter: blur(20px);
}

  .background2 {
    position: absolute;
    width: 150px;
    height:150px;
    background-image: radial-gradient(circle, rgba(134, 86, 194, 0.5), rgba(255, 255, 255, 0));
    filter: blur(10px);
}


@media screen and (min-width: 700px) {

    .header {
        margin-top: 1rem;
        margin-bottom: 1rem;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: relative;
        height: 90px;
    }
    
    .logo {
        width: auto;
        height: auto;
        padding: 20px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin-right: 350px;
    }
    
    .logo img {
        object-fit: cover;
        width: 100px;
        height: 86px;
    }
    
    .menubar {
        width: 400px;
        margin-top: 2rem;
        margin-bottom: 2rem;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .menubar a{
        text-decoration: none;
        color: black;
    }
    
    .background {
        position: absolute;
        width: 100px;
        height: 100px;
        background-image: radial-gradient(circle, rgba(140, 248, 97, 0.5), rgba(255, 255, 255, 0));
        filter: blur(50px);
      }
    
      .background2 {
        position: absolute;
        width: 150px;
        height:150px;
        background-image: radial-gradient(circle, rgba(134, 86, 194, 0.5), rgba(255, 255, 255, 0));
        filter: blur(50px);
      }
}


/*----------------------------------*/
/*           Contact SECTION    */
/*----------------------------------*/

.contact-form {
    height:560px;
    background-image: url(/images/fadelibrary\ 2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem;
}

.contact-section {
    padding: 1rem;
    padding-bottom: 60px;

}

.contact-form h2 {
    margin-bottom: 30px;
    margin-left: 20px;
}


@media screen and (min-width: 700px) {
    .contact-form {
        height:560px;
        padding-left: 3rem;
        padding-right: 3rem;
    }
    
    .contact-section {
        padding: 1rem;
        padding-bottom: 60px;
    }
    
    .contact-form h2 {
        margin-bottom: 30px;
        margin-left: 20px;
    }
    
    
}


/*----------------------------------*/
/*           Footer SECTION    */
/*----------------------------------*/

.footer {
    position: relative;
    margin-top: -10px;
    height: 200px;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}


.footer p {
  color: white;
  line-height: 2rem;
  text-align: center
}


@media screen and (min-width: 700px) {



}

