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

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

.hero {

    width: 100vw;
    height: 100vh;

    background-image: url("pjpag-background.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    position: relative;
}

header {

    position: absolute;

    top: 40px;
    left: 70%;
    right: 50px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {

    font-size: 96px;
    font-weight: 700;
    line-height: 1;
}

.logo .pj {
    color: #ff7b1f;
}

.logo .pag {
    color: #11d84f;
}

.contato {

    color: white;
    text-decoration: none;

    font-size: 36px;
    font-weight: 500;

    transition: 0.2s;
}

.contato:hover {
    opacity: 0.8;
}

footer {

    position: absolute;

    bottom: 40px;
    left: 70%;
    transform: translateX(-50%);

    width: 90%;

    text-align: center;

    color: white;

    font-size: 20px;
    font-weight: 400;

    text-shadow:
        0 0 10px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(0, 0, 0, 0.8);
}

@media (max-width: 900px) {

    .logo {
        font-size: 56px;
    }

    .contato {
        font-size: 18px;
    }

    footer {
        font-size: 16px;
        width: 95%;
    }
}
