/* - ALL THE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;400&family=Roboto:wght@300&family=Ubuntu:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=New+Tegomin&display=swap');


/* - REMOVES THE MARGIN FROM BODY - */
body {
    margin: 0;
}

/* - UNDERLINED TEXT */
.underline {
    text-decoration: underline;
}

/* - ITALIC TEXT */
.italic {
    font-style: italic;
}

/* - BOLD FONT */ 
.bold {
    font-weight: bold;
}

/* - BOLDER FONT */
.bolder {
    font-weight: bolder;
}

/* - STRIKETHROUGH TEXT */
.strikethrough {
    text-decoration: line-through;
}

/* CERTIFIED COLOR */ 
.certified {
    color: rgb(72, 133, 161);
}

.btn-classic {
    border-radius: 25px;
    border: 1px solid white;
    padding: 15px;
    padding-left: 25%;
    padding-right: 25%;
    font-size: 40px;
    background-color: black;
    color: white;
    font-family: 'Nunito Sans', sans-serif;
}