* {
    margin: 0;
    padding: 0;
}

html {
    background: url(brick.jpg) no-repeat fixed center center;
    background-size: cover;
}

body {
    height: 100%;
    color: #ffffff;
}

a:link,
a:visited,
a:active,
a:focus {
    color: #cccccc;
    text-decoration: none;
}

.container {
    position: absolute;
    height: 95%;
    min-height: 95%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container img {
    max-width: 100%;
    max-height: 95%;
}

.box {
    position: absolute;
    width: 60%;
    bottom: 3%;
    left: 5%;
    z-index: 1000;
    text-align: left;
    padding-left: 20px;
    padding-right: 10px;
    padding-top: 8px;
    padding-bottom: 10px;
    background: rgba(0, 0, 0, 0.5);
}

.name {
    font-family: 'Prompt-Light', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 100;
    line-height: clamp(1.5rem, 3vw, 3rem);
    color: #ffffff;
}

.msg {
    font-family: 'Prompt-Regular', sans-serif;
    font-size: clamp(0.75rem, 1.5vw, 1.25rem);
    font-weight: 100;
    line-height: clamp(0.75rem, 2vw, 2rem);
    color: #dddddd;
}

@font-face {
    font-family: 'Prompt-Light';
    font-weight: 300;
    font-style: normal;
    src: url('Prompt-Light.woff2') format('woff2');
}

@font-face {
    font-family: 'Prompt-Regular';
    font-weight: 300;
    font-style: normal;
    src: url('Prompt-Regular.woff2') format('woff2');
}