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

body, html {
    background-color: black;
    height: 100%;
    width: 100%;
    overflow: hidden;

.container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    width: 100%;
    padding-bottom: 5%;
}

.name {
    font-family: 'Playfair Display', serif;
    font-size: 15vw; 
    font-style: italic;
    color: white;
    text-align: center;
    margin-bottom: 3%;
}

.message {
    font-family: 'Open Sans', sans-serif;
    font-size: 2.5vw;
    color: white;
    text-align: center;
}

.message a {
    color: white;
    text-decoration: underline;
}


@media only screen and (max-width: 600px) {
    .name {
        font-size: 25vw;
    }
    .message {
        font-size
    }
