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

html, body {
    height: 100%;
}

body {
    font-size: 1rem;
    line-height: 1.65;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #02398c 50%, #f1f5f8 50%);
    color: #fff;
}

/*Main Styles*/

.wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
}

.details {
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    padding: 0 4rem;
    align-items: flex-start;
    justify-content: center;
}

.art {
    flex-basis: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.art img {
    width: 70%;
}

.title {
    display: inline-block;
    font-size: 40px;
    position: relative;
    margin-bottom: 1rem;
    color: #fbdd00;
}

.title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background-color: #fbdd00;
    width: 140px;
}

.intro {
    font-size: 20px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.description {
    margin-bottom: 2rem;
    line-height: 1.77;
    color: #fff;
}

.subscribe {
    background-color: #f1f5f8;
    padding: 1.5rem;
    width: 85%;
    border-radius: 3px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
    color: #333;
}

.subscribe h3 {
    font-weight: normal;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.sosmed {
    position: relative;
}

.sosmed input {
    font-family: inherit;
    outline: none;
    font-size: 90%;
    padding: 10px 1rem;
    border: none;
    display: block;
    border-radius: 2px;
}

.sosmed .email {
    width: 100%;
    background-color: #ecf0f1;
}

.sosmed .follow {
    position: absolute;
    right: 0;
    top: 0;
    background-color: #fbdd00;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    height: 100%;
    padding: 0.4rem 1rem 0 1rem;
    text-decoration: none;
    font-weight: bold;
}

.sosmed .follow:hover {
    background-color: #133e86;
}

@media screen and (max-width: 768px) {
    body {
        background: #02398c;
    }
    .wrapper {
        flex-direction: column;
    }
    .details, .art {
        flex-basis: 100%;
    }
    .art {
        display: none;
    }
    .details {
        padding: 4rem;
    }
}