body:before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    z-index: 1;
}


html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

main {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    box-sizing: border-box;
}

main#admin {
    align-items: flex-start;
    justify-content: flex-start;
    padding-bottom: 16px;
    height: auto;
}

#question-cotnainer {
    text-align: center;
    padding: 100px 0;
}

#information {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 20px;
    background: rgba(4, 4, 4, 0.20);
    max-width: 400px;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

#information h1 {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    width: 100%;
}

#information ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    flex-direction: column;
    border-top: 1px solid #FFF;
    margin-top: 12px;
    padding-top: 12px;
    width: 100%;
    color: #FFF;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

}

#information ul li {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

#information ul li span {
    text-align: left;
}

#information ul li span:last-child {
    flex: 1;
}

#information ul li span:first-child {
    font-weight: 700;
    min-width: 80px;
    max-width: 80px;
}

#question-form {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
}

#question-form-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    margin: 0 auto;
}

input {
    outline: none;
    height: 52px;
    padding: 4px 32px 4px 20px;
    border-radius: 30px;
    line-height: 52px;
    border: none;
    background-color: #FFF;
    box-shadow: none;
    border-width: 0;
    width: 100%;
    color: #000;
    text-align: left;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;

}

img#logo {
    width: 238px;
    margin-bottom: 24px;
    max-width: 64vw;
    height: auto;
}

input::placeholder {
    color: #000;
    text-align: left;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

button#submit-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: transparent;
    padding: 0;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 10;
}

@media (max-height: 500px) {
    main {
        padding-top: 75px;
        padding-bottom: 75px;
        justify-content: flex-start;
        height: auto;
    }

    #question-cotnainer {
        padding: 0;
    }

    #question-form {
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: 24px;
    }
}

#questions {
    display: block;
    width: 100%;
    height: 100vh;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th,
td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
    width: 50%;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

th {
    background-color: #f2f2f2;
}

#note {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#question_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    box-sizing: border-box;
}

#question_list .question {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.20);
}

#question_list .question>div:first-child {
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

#question_list .question>div:last-child {
    color: #000;
    font-family: Inter;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}