* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-family: 'Poppins', sans-serif;
}

a:-webkit-any-link {
  /* Remove links color */
  color: inherit;
}

/*#e75874*/
/*#be1558*/
/*#fbcbc9*/
/*#322514*/
/*color: #734d2b;*/

.test {
    background-color: #e75874;
    background-color: rgba(231, 88, 116, 1);

    background-color: #be1558;
    background-color: rgba(190, 21, 88, 1);

    background-color: #fbcbc9;
    background-color: rgba(251, 203, 201, 1);

    background-color: #322514;
    background-color: rgba(50, 37, 20, 1);
}

body {
    background-color: rgba(251, 203, 201, 0.5);
    color: #322514;
}

main {
    width: 1000px;
    margin: 24px auto;
}

h1, h2, h3, h4, h5, h6 {
    font-variant: small-caps;
    color: rgba(190, 21, 88, 1);
    font-family: 'Luckiest Guy', sans-serif;
    text-align: center;
    margin: 8px;
}

h1 {
    font-size: 3em;
}

h2 {
    font-size: 2.5em;
}

h3 {
    font-size: 2em;
}


p {
    margin: 8px;
}

.cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.card {
    box-shadow: 0 0 4px rgba(0, 0, 0, 70%);
    border-radius: 8px;
}

.card-title {
    text-align: center;
    color: rgba(190, 21, 88, 1);
    font-family: 'Luckiest Guy', sans-serif;
    font-size: 1.5em;
}

.card-content {
    text-align: center;
    font-size: 0.9em;
}

.center {
    text-align: center;
}

.bg-white {
    background-color: white;
}

/*
DESKTOP: >1024
TABLET: >600 and <1024
MOBILE: <600
*/
@media screen and (max-width: 1024px) {
    main {
        width: 80%;
    }
}

@media screen and (max-width: 600px) {
    main {
        width: 90%;
    }
}
