body {
    font-family: 'Roboto';
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0px;
}

h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
}

hr {
    margin: 0 0 30px 0;
}

.page-title {
    font-size: 36px;
    /* padding: 10px; */
    margin: 0 10px 20px 10px;
    /* border: 2px solid white; */
    min-width: 370px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.flex-row {
    display: flex;
    flex-direction: row;
    column-gap: 30px;
    justify-content: start;
    align-items: start;
    margin-top: 30px;
}

.title-and-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.box {
    display: flex;
    flex-direction: column;
    background-color: black;
    align-items: start;
    justify-content: center;
    padding: 20px;
    row-gap: 3px;
    border: 2px solid white;
    margin: 20px;
    min-width: 450px;
    max-width: 450px;
    list-style-type: none;
}

.box li {
    margin-top: 3px;
    font-size: 16px;
    font-weight: 300;
}

.box a {
    color: white;
    cursor: pointer;
    text-decoration: underline;
}

.box a:hover {
    opacity: 0.7;
}

.dont-see-your-question {
    font-size: 24px;
    margin-top: 60px;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
}

.dont-see-your-question a {
    color: white;
    cursor: pointer;
    text-decoration: underline;
}

.dont-see-your-question a:hover {
    opacity: 0.7;
}

/* Media query for screens smaller than 425px */
@media only screen and (max-width: 1050px) {
    .flex-row {
        flex-direction: column;
        row-gap: 30px;
    }
}

/* Media query for screens smaller than 425px */
@media only screen and (max-width: 500px) {
    .box {
        min-width: 300px;
        max-width: 300px;
    }
}

/* Media query for screens smaller than 425px */
@media only screen and (max-width: 375px) {
    .box {
        min-width: 250px;
        max-width: 250px;
    }
}