@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 90vh;
}

img {
    padding-left: 10%;
}


/* Edição div "drawer" */
.drawNumber {
    color: #FFFFFF;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 20px;
}

.first-number,
.second-number {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 342px;
    height: 74px;
    border-radius: 14px;
    padding-left: 20px;
    font-weight: 500;
    font-size: 40px;
    line-height: 47px;
    opacity: 0.7;
}

.first-number {
    margin-right: 62px;
}


/* edição div "shot" */
.guessNumber {
    color: #FFFFFF;
    font-style: normal;
    font-weight: 400;
    font-size: 32px;
    line-height: 38px;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.shotNumber {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 470px;
    height: 74px;
    border-radius: 14px;
    text-align: center;
    margin-left: 21%;
    font-weight: 500;
    font-size: 40px;
    line-height: 47px;
    opacity: 0.7;
}


/* Button */
.button-main {
    width: 342px;
    height: 72px;
    border-radius: 10px;
    background: #AEC346;
    box-shadow: 0px 18px 40px rgba(174, 195, 70, 0.35);
    color: #FFFFFF;
    font-weight: 700;
    font-size: 36px;
    margin-top: 40px;
    border: none;
    cursor: pointer;
    margin-left: 30%;
}

.button-main:hover {
    opacity: 0.9;
}

.button-main:active {
    opacity: 0.8;
}

@media screen and (max-width: 750px) {
    .first-number {
        margin-bottom: 30px;
        margin-left: 25%;
    }

    .second-number,
    .button-main {
        margin-left: 25%;
    }

    .shotNumber {
        margin-left: 16%;
    }
}

@media screen and (max-width: 415px) {
    img {
        height: 360px;
        width: 445px;
        margin-left: 11%;
    }

    .drawNumber {
        margin-left: 20%;
    }

    .guessNumber {
        margin-left: 21%;
    }

    .shotNumber {
        width: 415px;
    }
}

@media screen and (max-width: 392px) {
    img {
        height: 360px;
        width: 445px;
        margin-left: 7%;
    }

    .drawNumber {
        margin-left: 20%;
    }

    .guessNumber {
        margin-left: 21%;
    }

    .shotNumber {
        width: 415px;
    }
}