/* Reset some basics */
body {
    background-color: #83767d;
    background-size: cover;
    margin: auto;
    padding: 0;
    font-family: 'neucha_regular';
    text-align: center;
    min-height: 100vh;
    position: relative;
}


@font-face {
    font-family: 'indie_flowerregular';
    src: url('/fonts/indieflower-regular-webfont.woff2') format('woff2'),
         url('/fonts/indieflower-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'neucha_regular';
    src: url('/fonts/neucha-regular-webfont.woff2') format('woff2'),
         url('/fonts/neucha-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

img {
    max-width: 90%;
}

/* Headings */
h1, h2, b {
    color: #151412;
    font-weight: bold;
}

/* Ask container */
.ask-container {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Individual ask items */
.ask-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    width: 51%;
    margin-bottom: 20px; 
    
}

.ask-container img {
    max-width: 90%;
}

ul {
    text-align: left;
}

li {
    text-align: left;
}

ol {
    text-align: left;
}

/* Individual ask items */
.unanswered {
    padding: 15px;
    border-radius: 10px;
    width: 55%;
    margin-bottom: 20px; 
    
}

/* Buttons */
.cutiepie, .cutiepie2 {
    background: #950954;
    color: #FCF7E9;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    z-index: 999;
    width: 120px;
    margin: 4px auto 5px;
    display: block;
    padding: 10px;
}

/* Question & Answer styling */
.question {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.answer {
    color: #666;
}

/* Timestamp styling */
.timestamp {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}
