@font-face {
    font-family: 'aAnotherTag';
    src: url('a_another_tag/aAnotherTag.ttf') format('truetype');
}

body {
    background-image: url('images/art01.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-family: 'aAnotherTag', sans-serif;
    padding: 20px;
    box-sizing: border-box;
}

.content-wrapper {
    max-width: 100%;
}

p {
    color: white;
    font-size: clamp(1.8rem, 5vw + 1rem, 3rem);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    padding: 15px 10px;
    margin: 0;
}

a {
    font-size: clamp(1.8rem, 5vw + 1rem, 3rem);
    font-family: 'aAnotherTag', sans-serif;
    color: pink;
    text-decoration: none;
}

a:visited {
    color: aquamarine;
}

button {
    font-family: 'aAnotherTag', sans-serif;
    font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
}

button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

textarea {
    font-family: 'aAnotherTag', sans-serif;
    font-size: 1.2rem;
    width: 80%;
    max-width: 500px;
    padding: 10px;
    border: 1px solid white;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}

#messageAreaContainer {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

#messageButtons {
    display: flex;
    flex-direction: row;
}
