* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    word-wrap: break-word;
}

body {
    position: relative;
    min-height: 100vh;
    font-family: 'Newsreader', serif;

    display: grid;
    display: -ms-grid;
    display: -moz-grid;

    place-content: center;

    background-image: url('./background.svg');
    background-repeat: no-repeat;
    background-size: cover;
}

h1 {
    font-size: 3rem;
    font-style: italic;
    margin-bottom: 1rem;
    /* color: rgb(10, 10, 10); */
}

p {
    font-size: 18px;
    font-weight: 500;
}

.container {
    position: relative;
    text-align: center;

    overflow: hidden;

    padding: 2.5rem 5rem;
    border-radius: .25rem;
}

.container::before {
    position: absolute;
    content: "";

    left: 0;
    top: 0;

    width: 120%;
    height: 100%;

    z-index: -1;

    background: linear-gradient(
        to right bottom,
        rgba(255, 196, 197, 0.4),
        rgba(200, 163, 255, 0.1)
    );
    filter: blur(2rem);
    -webkit-filter: blur(2rem);
    -ms-filter: blur(2rem);
}

.container .main-photo {
    width: 100%;
    max-width: 800px;
    margin-bottom: 2rem;
}

.container p {
    color: rgba(0, 0, 0, .8);
}

p.main {
    display: block;
    margin-bottom: 1rem;
}

.link {
    display: flex;
    display: -webkit-flex;

    justify-content: center;
    align-items: center;

    margin-bottom: .5rem;
}

.link p {
    margin-left: .5rem;
}

a {
    text-decoration: none;
    color: white;
}

.design {
    margin-top: 4rem;
}

.design hr {
    width: 75%;

    margin: 1rem auto;
    border-color: rgba(255, 255, 255, 0.8);
    border-radius: 9999px;
}

@media screen and (max-width: 768px) {
    .container {
        padding: 2.5rem;
    }
}