@import url('https://fonts.googleapis.com/css2?family=Bungee+Spice&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Outfit:wght@100..900&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Special+Gothic+Condensed+One&family=Special+Gothic+Expanded+One&family=Winky+Rough:ital,wght@0,300..900;1,300..900&display=swap');

*{
    font-family: "Outfit", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}
body{
    background-color: #daebf8;
}

section{
    padding: 28px 8%;
}

.btn-default{
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(145, 155, 250);
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0px 0px 18px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .5s ease;
}

.btn-default:hover{
    background-color: rgb(101, 101, 202);
}

.social-media-buttons{
    display: flex;
    gap: 30px;
}

.social-media-buttons a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;height: 40px;
    background-color: #ffffff;
    font-size: 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    color: #080808;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow .3s ease;
}

.social-media-buttons a:hover{
    box-shadow: 0px 0px 12px 8px rgba(12, 85, 221, 0.1);
}

.fa-whatsapp:hover{
    color: rgb(19, 233, 19);
}

.fa-facebook:hover{
    color: rgb(31, 52, 240);
}

.fa-instagram:hover{
    color: rgb(231, 9, 131);
}

#banner{
    display: flex;
    align-items: start;
    justify-content: end;
    width: 60%;
}

#banner img{
    height: 25%;
    width: fit-content;
}

.shape{
    background-color: #fff;
    width: 50%;
    height: 100%;
    position: absolute;
    
}

.section-title{
    color: rgb(128, 0, 0);
    font-size: 2rem;
}

.section-subtitle{
    font-size: 2.1875rem;
    color: rgb(76, 74, 199);
}
