/* Efeitos Globais */
* {
    margin: 0;
}

/* Container Parallax */
.container-parallax-sorteio {
    background-image: url("../assets/bolas-de-loteria.webp");
    height: 100vh;

    position: relative;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}


.container-parallax-sorteio h1 {
    width: 500px;
    padding: 10px;
    position: relative;
    top: 20%;
    right: 0;
    left: 0;
    margin: auto;
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    font-family: "Fraunces", sans-serif;
    text-align: center;
    letter-spacing: 2px;
    background-color: #604829;
    color: #fff;
}

/* containers Sorteio */
.container-parallax-sorteio p, .container-parallax-sorteio table {
    width: 500px;
    padding: 10px;
    position: absolute;
    top: 25%;
    right: 0;
    left: 0;
    margin: auto;
    background-color: #fff;

    color: #000000;
    font-family: "Oswald", sans-serif;
    line-height: 36px;
    text-shadow: 0px 6px 8px #000000;
    text-align: center;
}

.container-parallax-sorteio p {
     text-align: left;
}

.container-parallax-sorteio table {
    text-align: center;
}
/* containers Sorteio */

/* containers FlexBox*/
.container-sorteio {
    padding: 30px 60px;
    background-color: #000000;
    display: flex;
    justify-content: space-evenly;
    margin: 0 auto;
    border-radius: 8px;
    flex-wrap: wrap;
    gap: 20px;
}
  
 .card-sorteio {
    width: 300px;
    height: 200px;
    padding: 30px 20px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 10px 10px 50px 10px red;
  }
  
.card-sorteio p {
    width: 240px;
  }

.dezena {
    color: #000000;
    bottom: 300px;
    right: 150px;
    font-size: xx-large;
    font-weight: bolder;
}

.card-sorteio button {
    bottom: 5px;
    right: 0;
    left: 0;
    font-size: 18px;
    font-weight: 600;
    background-color: aqua;
    border-radius: 20px;
    padding: 10px 60px;
    cursor: pointer;
    box-shadow: 1px 1px 5px 1px black;
}
  
.card-um {
    background: linear-gradient(to left, #b92b27, #1565c0);
  }
  
.card-dois {
    background: linear-gradient(to right, #1f4037, #99f2c8);
  }
  
.card-tres {
    background: linear-gradient(to right, #f12711, #f5af19);
  }

.card-todos {
    background: linear-gradient(to top, #f12711, #000000);
}
/* containers FlexBox*/