@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,900&display=swap");
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(to top left, #0A0B0E, #303845) no-repeat;
    min-height: 100vh;
    color: #fff;
    text-align: center;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

h1 span {
    color: #00c792;
}
p {
    margin: 20px 0 30px;
}

.styles {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.styles img {
    max-width: 100%;
    width: 80%;
    border-radius: 7px;
    box-shadow: 0 3px 30px #000;
    margin: 30px 0;
}

@media (max-width: 768px) {
    .styles {
        flex-direction: column;
    }
}