@import url('https://fonts.googleapis.com/css2?family=Bubblegum+Sans&family=Bubbler+One&family=Bungee&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    margin: 50px;
}
header .container{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin: 0;
    font-family: 'Bubbler One';
}
header{
    box-shadow: 0px 5px 4px rgba(0, 0, 0, 0.205);
    padding: 18px 0;
    margin: 0;
}
.hero{
    background-color: #6A1B9A;
    margin: 0;
}
.hero .container{
    margin-top: 0;
    padding-top: 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    font-family: 'Bungee';
    color: white;
    padding-bottom: 50px;
    font-size: 34px;
}
.hero-img{
    width: 730px;
}
.about .container{
    display: flex;
    flex-direction: column;
}
.about .container .top-about, .about .container .down-about{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: baseline;
}
.down-about p{
    align-self: center;
    width: 50%;
    font-size: 25px;
    font-family: 'Bubbler One';
}
.top-about{
    align-self: flex-start;
    gap: 40%;
    width: 100%;
    margin: 20px;
    margin-bottom: 50px;
    margin-left: 0;
}
.top-about h1, .tips h1, footer h1, .newsletter h2{
    font-family: 'Bungee';
    font-size: 34px;
    margin: 15px 0;
}
.top-about h2{
    font-family: 'Bubbler One';
}
.cards{
    display: flex;
    flex-direction: row;
    gap: 50px;
}
.card, form{
    display: flex;
    justify-content: center;
    flex-direction: column;
    border: 2px solid #6A1B9A;
    background-color: #D1C4E9;
    border-radius: 20px;
    padding: 30px;
    width: 30%;
    margin: 50px 0;
}
.card h1{
    margin-bottom: 30px;
}
.card h4{
    font-family: 'Bubblegum Sans';
    font-size: 24px;
    margin: 15px 0;
}
.card p{
    font-family: 'Bubbler One';
    font-size: 20px;
    font-weight: 700;
}
.span{
    width: 100%;
    height: 2px;
    background-color: #6A1B9A;
    margin: 0 50px;
}
.title, .subtitle, .newsletter p{
    text-align: center;
    font-family: 'Bubbler One';
    font-size: 30px;
    text-decoration: none;
    color: black;
}
.subtitle:hover{
    color: #6A1B9A;
}
footer{
    background-color: #6A1B9A;
    margin: 0;
    padding: 50px;
    color: white;
}
footer p{
    font-family: 'Bubbler One';
    margin: 15px 0;
    text-decoration: none;
    color: white;
    font-weight: 650;
}
footer p .one{
    text-decoration: none;
    color: white;
}
footer p .one:hover{
    color: #D1C4E9;
}
.newsletter .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
form label{
    font-family: 'Bungee';
    font-size: 34px;
    margin: 15px 0;
}
form input{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-family: 'Bubbler One';
    border: none;
    border-radius: 10px;
}
form button{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    font-family: 'Bubbler One';
    border: none;
    border-radius: 10px;
    margin-top: 20px;
    background-color: #6A1B9A;
    color: white;
    font-size: 20px;
}
form button:hover{
    background-color: #b4a2d6;
}
.newsletter ul, small{
    list-style: none;
    font-family: 'Bubbler One';
    font-size: 23px;
    gap: 10px;
}