*,
html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: salmon;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

@media screen and (max-width: 500px){
    .bodyicon {
        height: auto;
        max-width: 100px;
        margin-bottom: 30px;
    }

    .container {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }

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

    .row {
        display: flex;
        flex-direction: row;
    }

    button {
        border: none;
        background-color: darkturquoise;
        font-size: 1.1em;
        padding: 16px;
        margin-left: 10px;
        height: 65px;
        color: #222222;
        font-weight: 600;
        margin-top: 10px;
    }

    input {
        border: none;
        background-color: #eaeaea;
        color: #222222;
        padding: 14px;
        font-size: 14px;
        margin-top: 10px;
    }

    #pertanyaan {
        font-size: 0.5em;
        font-weight: 500;
    }    
}

@media screen and (min-width: 500px){
    .bodyicon {
        height: auto;
        max-width: 150px;
        margin-bottom: 30px;
    }

    .container {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }

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

    .row {
        display: flex;
        flex-direction: row;
    }

    button {
        border: none;
        background-color: darkturquoise;
        font-size: 24px;
        padding: 16px;
        margin-left: 10px;
        height: 65px;
        color: #222222;
        font-weight: 600;
        margin-top: 10px;
    }

    input {
        border: none;
        background-color: #eaeaea;
        color: #222222;
        padding: 16px;
        font-size: 24px;
        margin-top: 10px;
    }

    #pertanyaan {
        font-size: 1.3em;
        font-weight: 500;
    }    
}


