@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    height: 100vh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: url(/src/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.ctn-content {
    background-image: linear-gradient( 0deg, black 10%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
    width: 100vw;
    height: 100vh;
}

.ctn-content a{
    text-decoration: none;
}

/* Botões */
a .btn-grupo {
    font-family: 'Kanit', sans-serif;
    background-image: linear-gradient(to right, #DCE35B 0%, #45B649  51%, #DCE35B  100%);
    padding: 30px 45px;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    box-shadow: 0 0 20px #45B649;
    border-radius: 10px;
    display: block;
    border: none;
    text-decoration: none;
    text-shadow: 2px 2px 5px black;
}

a .btn-grupo{
    font-size: 1.3rem;
}

a .btn-grupo:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
}

h2{
    font-family: 'Kanit', sans-serif;
    font-size: 5rem;
    font-weight: 400;
    text-shadow: 2px 2px 5px black;
    margin: -10px 0 -40px 0;
}

h3{
    font-family: 'Kanit', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    margin: 40px 0;
    text-shadow: 2px 2px 5px black;
}

p{
    font-family: 'Kanit', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    padding: 0 20px;
    text-shadow: 2px 2px 5px black;
}

.pg-games{
    margin: 20px;
    width: 20rem;
    filter: drop-shadow(1px 1px 20px #45B649);
}

.ico{
    color: #fff;
    margin-left: 10px;
    font-size: 1.2rem;
}

/* Barra de Progressão */
.progress-container {
    width: 80%;
    max-width: 600px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 10px;
    background-image: linear-gradient(to right, #2FAA4D 0%, #5df182 100%);
    width: 0; /* Define a largura da barra de progresso aqui */
    transition: width 0.5s ease-in-out;
}

/* Icones de Seguranca */

.safe-icons{
    display: block;
}

.safe-icons img{
    width: 80%;
    margin-top: 10px;
}