@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

main {
    overflow-x: hidden;
}

footer {
    overflow-x: hidden;
}

a {
    color: white;
    text-decoration: none;
    cursor: pointer;
    opacity: 1;

    transition: all .3s ease;
}
a:hover {
    opacity: .7;
}

li {
    list-style: none;
}

h2 {
    font-weight: 400;
    font-size: 1.5rem;
    text-transform: uppercase;
    text-align: center;
    color: #fd41a2;
}