@import url(global.css);

* {
    color: white;
}

body {
    background-color: black;
    background-image: url(/img/space.gif);
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    text-shadow: 2px 2px 2px lightgray;
    color: lime;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.said {
    position: relative;
    background: #3f3f3f;
    border-radius: 10px;
    padding: 10px 15px;
    margin: 1rem;
}

.said::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #3f3f3f;
}

.said, .said * {
    color: white;
}

.said p:last-child {
    margin-bottom: 0;
}