body,
html {
    background-color: #000;
    color: #fff;
    font-family: sans-serif;
    padding: 0;
    margin: 0;
}

.getDiv {
    background: linear-gradient(rgb(0, 63, 63), rgb(0, 0, 0));
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#getBtn {
    padding: 20px;
    border-radius: 15px;
    border-width: 1px;
    border: 1px solid #333;
    background-color: #111;
    color: #fff;
    font-size: 18px;
}

h1 {
    font-weight: bolder;
    font-size: 100px;
    margin: 10px 0;
}

h2 {
    font-weight: bold;
    margin: 5px 0;
    font-size: 20px;
}

h3 {
    font-weight: normal;
    margin: 5px 0;
    font-size: 18px;
}

p {
    font-size: 14px;
}

.sections {
    display: flex;
}

.section {
    box-sizing: border-box;
    display: block;
    padding: 25px 50px;
    width: 25%;
    text-align: center;
}

.section img {
    width: 70%;
}

.section div {
    width: 100%;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
    #getBtn {
        font-size: 42px;
        margin: 20px;
        padding: 40px;
        border-radius: 30px;
    }

    h1 {
        font-size: 120px;
        margin: 20px;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 36px;
        margin: 20px;
    }

    p {
        font-size: 28px;
    }

    .sections {
        display: block;
    }

    .section {
        display: flex;
        width: 100%;
        text-align: left;
    }

    .section img {
        width: 40%;
    }

    .section div.right {
        text-align: right;
    }
}