@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Poppins:wght@500&display=swap');

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

body{
    background-color: #DBE9FA;
}

.container {
    display: flex;
    align-items: center;
}

.text {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

h1 {
    font-family: 'Poppins', sans-serif;
    text-transform : uppercase;
    font-size: 5em;
    color: #FFFF;
    -webkit-text-stroke: 0.2px; 
    -webkit-text-stroke-color: #757575;
}

p {
    padding: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #757575;
}

img {
    height: 100vh;
}

button {
    padding: 30px;
    margin-top: 30px;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 1em;
    text-transform : uppercase;
    color: #757575;
    border: 1px solid #56A5EC;
}

button:hover {
    background-color: #CECECE;
}

a {
    color: #757575;
}

@media (min-width: 768px) and (max-width: 1023px){
    .container {
        flex-direction: column-reverse;
    }

    h1 {
        font-size: 5em;
    }
}

@media (max-width: 767px) {
    img {
        display: none;
    }

    .container {
        flex-direction: column;
    }

    h1 {
        font-size: 3em;
    }
}