@import url('https://fonts.googleapis.com/css2?family=Poppins: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&display=swap');


* {

    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;

    
}




section {


    padding: 28px 8%;
    

}

.btn_default {

    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #552774;
    border-radius: 12px;
    padding: 20px 24px;
    font-weight: 600;
    box-shadow: 0px 0x 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease;
    color: white;

}

.btn_default:hover {

    background-color: #552774;

}

.social_buttons {

    display: flex;
    gap: 18px;

}

.social_buttons a {

    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 50px;
    background-color: #552774;
    font-size: 1.50rem;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 1.3s ease;
   

}

.social_buttons a i {

    color: white;

}


.social_buttons a:hover {

    box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.1);

}

.section_title {

    color: #552774;
    font-size: 1.563rem;

}


.section_subtitle {

    font-size: 2.1875rem;

}