* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

body {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background: #DE6FDE;
    background: linear-gradient(rgba(222, 111, 222, 0.50), rgba(222, 111, 222, 0.25)), url("../img/bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

header {
    background: none;
    position: sticky;
    min-height: 4rem;
    z-index: 999;
    box-shadow: 0 -1rem 2rem 1rem rgba(0, 0, 0, 0.25);
}

.container {
    max-width: 1440px;
    padding: 0 5rem;
    margin: 0 auto;
}

.logo {
    color: #fff;
    font-size: large;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.content {
    display: flex;
    flex-direction: column;
    width: 60%;
    justify-content: center;
    height: 90vh;
}

.content h2 {
    font-size: 3rem;
    color: #fff;
}

.content p {
    color: #fff;
    margin-top: 1rem;
}

.content p a {
    color: #fff;
    line-height: 2;
    margin-top: 1rem;
}

@media(max-width: 1058px) {
    .container {
        padding: 0 3rem;
    }

    .content h2 {
        font-size: 2.5rem;
    }
}

@media(max-width: 902px) {

    .content h2 {
        font-size: 2rem;
    }

}

@media(max-width: 562px) {

    .content {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        height: 90vh;
        align-items: center;
    }

    .content h2 {
        text-align: center;
        font-size: 1.5rem;
    }
}