* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #000;
}

img {
    width: 583px;
    height: 374px;
    margin-top: 156px;
}

h1 {
    width: 299px;
    height: 50px;
    color: #FFF;
    font-family: Roboto;
    font-size: 35px;
    font-weight: 400;
    margin: 126px 0 29px;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

div {
    display: flex;
    flex-direction:row;
    align-items: center;
    appearance: none;
}

#num1 {
    margin: 0 62px 0 0;
    padding: 13px 20px 30px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.25);
    width: 342px;
    color: #FFF;
    font-family: Roboto;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    opacity: 0.7;
}

#num2 {
    padding: 13px 20px 30px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: rgba(255, 255, 255, 0.25);
    width: 342px;
    color: #FFF;
    font-family: Roboto;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    opacity: 0.7;
}

button {
    display: flex;
    margin-top: 79px;
    width: 342px;
    height: 72px;
    padding: 0 76px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    background: #AEC346;
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 36px;
    font-weight: 700;
    line-height: 2.5px;
}

button:hover {
    opacity: 0.9;
}

button:active {
    opacity: 0.7;
}


@media (max-width: 800px) {
    img {
        width: 50vw;
        height: auto;
        margin-top: 40px;
    }
    h1{
        text-align:center;
        font-size: 50px;
        width: 90vw;
        height: auto;
        margin: 80px 0 30px;
    }
    #num1 {
        margin: 50px 20px 0 20px;
        padding: 10px;
        width: 40vw;
        height: auto;
    }
    #num2 {
        margin: 50px 20px 0 0;
        padding: 10px;
        width: 40vw;
        height: auto;
    }
    button {
        width: 70vw;
        height: 8vh;
    }
}