/* Import the Bungee font from Google Fonts */
/* @import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap');

 */
.momo-h2 {
    font-family: 'Bungee', sans-serif;
    font-size: 36px;
    font-weight: 400;
	font-style: normal;
    color: #001393;
    text-align: center;
    margin: 10px 0;
}

.momo-h3 {
    font-family: 'Bungee', sans-serif;
    font-size: 32px;
    font-weight: 400;
	font-style: normal;
    color: #001393;
    text-align: center;
    margin: 10px 0;
}

.momo-h4 {
    font-family: 'Bungee', sans-serif;
    font-size: 28px;
    font-weight: 400;
	font-style: normal;
    color: #001393;
    text-align: center;
    margin: 10px 0;
}

.momo-h5 {
    font-family: 'Bungee', sans-serif;
    font-size: 24px;
    font-weight: 400;
	font-style: normal;
    color: #001393;
    text-align: center;
    margin: 10px 0;
}

.momo-message {
    font-family: 'commuters-sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
	font-style: normal;
    color: #ec4872;
    text-align: center;
    margin: 10px 0;
}

.norm-button {
    background-color: #48bfdf;
    color: white;
    border: none;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 2px;
    cursor: pointer;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.norm-button:hover {
    background-color: #ec4872;
    transform: scale(1.1);
}

.norm-button:active {
    transform: scale(0.9);
}

.fun-button {
    background-color: #48bfdf;
    color: white;
    border: none;
    padding: 30px 60px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 32px;
    margin: 10px 2px;
    cursor: pointer;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.fun-button:hover {
    background-color: #ec4872;
    transform: scale(1.1);
}

.fun-button:active {
    transform: scale(0.9);
}
