@media only screen and (max-device-width: 600px) {
    h1 {
        font-size: 7rem;
    }

    p {
        font-size: 3rem;
        line-height: 4rem;
    }
}

@media only screen and (min-device-width: 601px) {
    h1 {
        font-size: 4rem;
    }

    p {
        font-size: 2rem;
        line-height: 2.75rem;
    }
}


body {
    background-image: linear-gradient(#3E6390, #60506A);
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding-top: 1rem;
    flex-direction: column;
    font-family: sans-serif
}

.header-container {
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
    background-color: #624d6f;
    border-radius: 30px;
    border: #000 solid;
    border-width: 5px;
    width: 85%;
}

h1 {
    font-style: oblique;
    overflow-wrap: break-word;
    text-align: center;
}

p {
    color: #fdd295;
    text-align: center;
}

a:link,
a:active {
    color: #EDFFF3;
}

a:visited {
    color: orange;
}

a:hover {
    color: turquoise;
}