.review-item {
    background: #181818;
    border: 2px solid #fff1;
    
    /*backdrop-filter: blur(10px);*/
    
    text-align: left; /* Align text to the left */
    padding: 10px;
    margin: 10px 30px 0px 30px;
    font-size: 14px; /* Font size for text */
    border-radius: 10px;

    --shadow-distance: 0px;
    --shadow-opacity: 0.1;

    box-shadow: 0 var(--shadow-distance) 4px rgba(0, 0, 0, var(--shadow-opacity));
}

.review-name {
    font-weight: bold;
    color: #999;
}

.review-text {
    font-size: 14px;
    margin-top: 1.5rem;
}

.rating {
    font-size: 2rem;
    user-select: none;
}

.site-title-backdrop {
    margin: 0;
    width: 100%;
    height: auto;
    
    background-size: cover;
    background-position: center;
}

.site-title {
    margin: 0;
    width: 100%;
    height: auto;

    background-image: linear-gradient(to bottom, #1112, #1113);
    background-size: 100% 100%;
    background-position: center;

    backdrop-filter: blur(10px);
    
    border-bottom: 2px solid #fff1;
    
    text-shadow: 0 0 10px #111;
}

form {
    background: #161616;
    padding: 30px;
}

body {
    padding-bottom: 10px;
}

input, textarea {
    background: #222;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-family: 'FK Grotesk Trial';
}

input {
    width: 400px;
}

textarea {
    resize: vertical;
    width: 100%;
}

button {
    background: green;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-family: 'FK Grotesk Trial';
}


#wholeasstitle {
    color: #f8f8ff;
}