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

* {
    list-style: none;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: white;
}

a {
    text-decoration: none;
    color: white;
}

body {
    height: 100vh;
    font-family: 'Poppins';
    background: rgb(230, 80, 17);
}

header {
    padding: 2rem 0.5rem;
}

header img {
    width: 100%;
}

header p {
    font-weight: 300;
    text-align: center;
}

section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

ul {
    padding: 0.5rem 0;
}

ul a {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0.2rem 0;
}

ul a img {
    width: 100%;
}

li {
    margin-left: 1rem;
}

h3 {
    font-weight: 600;
    letter-spacing: 0.03cm;
    font-size: 1rem;
}

.bs-site-link {
    background-color: rgba(255,255,255,.4);
    border-bottom: 0;
    border-radius: 4px;
    width: 100%;
    padding: 5px 10px;
    transition: all .3s;
    margin: 0.3rem 0;
    text-shadow: black 0px 0px 1px;
}

.bs-site-link:hover {
    background-color: rgba(255,255,255,.7);
    text-shadow: black 0px 0px 3px;
}

.bandera {
    height: 20px;
    width: 28px;
}

@media (min-width: 992px){
    body {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    section {
        margin-left: 5rem;
    }

    .bs-site-link {
        width: fit-content;
    }
}