.Questions {
    height: 70vh;
    display: flex;
    justify-content: space-between;
    width: 55vw;
    font-size: 20px;
    margin: 0 auto;
    margin-top: 50px;
    z-index: 1;
}
.Questions h1,h3 {
    margin: 0;
}
.Questions-test, .Questions-create, .Questions-list {
    width: 400px;
    border-radius: 10px;
    box-shadow: 4px 4px 20px 3px rgba(0, 0, 0, 0.08);
    height: 350px;
}
.Questions-test {
    margin-top: 50px;
}
.Questions-list {
    height: 750px;
}
.Questions-list img {
    width: 30px;
}
.Questions-list li {
    background-color: #549DF2;
    margin-bottom: 10px;
}
.Questions-list ul li {
    width: auto;
}
.Questions-create h1 {
    padding-top: 15px;
    padding-bottom: 10px;
    text-align: center;
    font-size: 32px;
}
.Questions-input {
    margin: 0 auto;
    width: 230px;
}
.Questions-input h3{
    font-size: 22px;
    font-weight: 400;
    text-align: left;
}
.Questions-input input {
    width: 210px;
    padding: 10px;
    border-radius: 10px;
    border: solid #E3E3E3 1px;
    font-size: 16px;
    margin-bottom: 10px;
}
.Questions-create button,
.Questions-test button {
    color: white;
    border-radius: 10px;
    border: none;
    background-color: #549DF2;
    font-size: 32px;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    width: 250px;
    padding: 5px;
    font-family: Outfit;
    margin-top: 20px;
    cursor: pointer;
    transition: ease 200ms;
}
.Questions-test h1 {
    font-size: 32px;
    text-align: center;
    padding-bottom: 30px;
    padding-top: 10px;
}
.Questions-stats h1 {
    display: flex;
    justify-content: space-between;
    margin-right: 40px;
    font-weight: 400;
    padding-top: 0px;
    margin-left: 40px;
    padding-bottom: 25px;
    text-align: left;
}
.Questions-stats span {
    color: #549DF2;
    font-weight: 600;
}
.Questions-test button {
    margin-top: 0px;
}
.Questions-list h1 {
    font-size: 32px;
    text-align: center;
    padding-bottom: 40px;
}
.Questions-list li {
    list-style-type: none;
    width: 300px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    margin-bottom: 20px;
    color: white;
    font-size: 26px;
    padding: 10px;
    border-radius: 10px;
    transition: ease 200ms;
}
.Questions-list li:hover,
.Questions-column button:hover {
    background-color: rgb(70, 123, 214);
}
.Questions-list img {
    width: 30px;
    height: 30px;
    cursor: pointer;
    transition: 200ms;
}
.Questions-list img:hover {
    transform: scale(1.2);
}
.Questions-list ul {
    margin: 0  auto;
    padding: 0;
    width: 350px;
}
.Questions-checkBox {
    display: flex;
    justify-content: space-between;
    width: 250px;
    margin: 0 auto;
    margin-bottom: 20px;
}
#LongQuestionButtons {
    width: 43px;
}

@media (max-width: 800px) {
    .Questions {
        display: block;
        width: 90%;
    }
    .Questions-test, .Questions-create, .Questions-list {
        width: 100%;
    }
    .Questions-list {
        margin-top: 50px;
        padding-bottom: 50px;
    }
    .Questions-list ul {
        width: 90%;
    }
    .Questions-list h1 {
        padding-bottom: 20px;
        padding-top: 10px;
    }
    .ActionButtons button {
        padding-inline: 2px;
    }
}