html, body{
    margin: 0;
    padding: 0;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background-color: #ece7e1;
    scroll-behavior: smooth;
}

.mycontainer{
    display: flex;
    flex-direction: column;
    align-items:center;
    justify-content: center;
    width: 100%;
}

@font-face {
    font-family: 'parisienneregular';
    src: url('../fonts/parisienne-regular-webfont.woff') format('woff2'),
         url('../fonts/parisienne-regular-webfont.woff2') format('woff');
    font-weight: normal;
    font-style: normal;

}
.dark-purple{
    background-color: #1c1332;
}
.purple{
    background-color: #7a297c;
}
.light-purple{
    background-color: #914891;
}
.divider-10{
    height: 10px;
    width: 100%;
}
.divider-20{
    height: 20px;
    width: 100%;
}
.divider-30{
    height: 30px;
    width: 100%;
}
.divider-40{
    height: 40px;
    width: 100%;
}
.divider-50{
    height: 50px;
    width: 100%;
}
.divider-60{
    height: 60px;
    width: 100%;
}
.divider-70{
    height: 70px;
    width: 100%;
}
.divider-80{
    height: 80px;
    width: 100%;
}
.divider-90{
    height: 90px;
    width: 100%;
}
.divider-100{
    height: 100px;
    width: 100%;
}

.bluebg{
    background-color: #2d3487;
}
.whitebg{
    background-color: #ffffff;  
}
.goldbg{
    background-color: #f7cb7e;
}
.creambg{
    background-color: #faf4e7;
}

.fadeInUp{
    opacity: 0;

}
.faded{
    opacity: 1;
    animation: fadeIn 3s;
}
@keyframes fadeIn {
    0% {
        opacity:0;
        transform: translateY(50px);
    }
    100% {
        opacity:1;
        transform: translateY(0px);
    }
}

.banner{
    width: 100%;
    margin: 30px;
    margin-bottom: 40px;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.banner img{
    
}

.btn-blue{
    padding: 15px;
    margin: 5px;
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #2d3487;
    font-family: Georgia, 'Times New Roman', Times, serif;
    border: solid 2px #2d3487;
    transition: 0.5s;
}
.btn-blue:hover{
    background-color: #ffffff;
    color: black;
    cursor: pointer;
}

.btn-green{
    padding: 15px;
    margin: 5px;
    border-radius: 10px;
    color: #fff;
    text-decoration: bold;
    text-transform: uppercase;
    background-color: #502965;
    border: solid 2px #502965;
    transition: 0.5s;
    font-family: 'Quicksand';
    font-size: 18px;
    text-decoration: none;
}
.btn-green:hover{
    background-color: #ffffff;
    color: black;
    cursor: pointer;
}

.mycontent{
    width:90%;
    max-width: 900px;
    padding: 20px;
}