
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200&family=Poppins:wght@100&family=Roboto:ital,wght@0,100;1,700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Poppins', Arial;*/
}

:root{
    --box-bcg-color: rgba(217, 217, 217, 0.21);
    --box-border-color: rgba(0, 0, 0, 0.21);
    --red-color-header: rgba(255, 36, 30, 0.8);
    --red-color: #e1241e;
    --gray-color-text: rgba(255,255,255,0.6);
    --black-color-header-text: #2A2A2A;
    --font-family-primary: 'Exo', sans-serif;
    --font-family-Bunge: 'Bungee', cursive;
}

body{
    background: var(--red-color-header);
    font-family: var(--font-family-primary);
}

div{
    width: 80vw;
    display: flex;
    flex-direction: column;
/*    justify-content: center;
    align-items: center;*/
    padding: 5vh 10vw 5vh 10vw;
    margin: 5vh 10vw 5vh 10vw;
    gap: 1vw;
    border: black 2px solid;
    border-radius: 5%;
    background: var(--gray-color-text);
}

div a{
    color: var(--red-color);
}

div ul{
    margin-left: 5vw;
}

p{
    text-align: justify;
}
