* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 18px;
    font-family: arial;
    list-style: none
}

body {
    margin: auto;
    padding: 0 5%
}

h1,
h2 {
    padding: 10px 0;
    text-align: center
}

h1,
h2,
h3,
p {
    max-width: 700px;
}

h1 {
    font-size: 50px
}

h2 {
    font-size: 25px;
    font-weight: 400;
    color: #646464
}

a {
    color: #002fff
}

p {
    line-height: 30px;
}

header {
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

header li a {
    padding: 15px;
    border-radius: 2px;
    text-decoration: none;
    color: #363636
}

header li a:hover {
    background: #ececec
}

#menu,
.result-block,
#multiple-choice-option {
    display: flex;
    justify-content: center;
    align-items: center
}

#logo {
    padding: 10px;
    border-radius: 2px;
    font-size: 25px;
    font-style: italic;
    text-decoration: none;
    color: #000000
}

#menu,
.result-block {
    gap: 30px
}

#hamburger {
    display: none
}

main,
section {
    padding-top: 20px;
    padding-bottom: 200px;
    text-align: center
}

main,
section,
form,
.box,
#dashboard-surveys,
.survey-card,
#results-container,
#results-content,
.question-block,
#questions-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px
}

form {
    max-width: 300px;
    width: 100%
}

form input,
form button,
form textarea,
#questions-container,
.question-block {
    width: 100%
}

input {
    padding: 10px 20px
}

.btn {
    padding: 15px;
    border: none;
    border-radius: 2px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    color: #ffffff;
    background: #00c000
}

.btn:hover {
    background: #686868
}

.red {
    background: #ff3300
}

.box {
    max-width: 500px;
    width: 100%;
    padding: 20px;
    border: 1px solid #a8a8a8;
    text-align: center
}

.list {
    max-width: 700px;
    width: 100%;
    padding: 20px;
    border: 1px solid #a8a8a8;
    display: flex;
    justify-content: space-between;
}

.italic {
    font-style: italic
}

.sample-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 5px 5px 5px 5px #ececec
}

article {
    max-width: 700px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left
}

.chart-container {
    position: relative;
    max-width: 600px;
    width: 100%;
    height: 300px
}

.chart-container canvas {
    width: 100% !important;
    height: 100% !important
}

.survey-header {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.delete-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer
}

.options-menu {
    margin-top: 10px
}

.hidden {
    display: none
}

footer {
    height: 300px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

@media (max-width: 1000px) {
    #hamburger {
        display: block;
        font-size: 35px;
        font-weight: 700;
        user-select: none;
        cursor: pointer
    }

    #menu {
        position: absolute;
        left: -100%;
        top: 100px;
        width: 100%;
        padding-bottom: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 40px;
        background: #ffffff
    }

    #menu.show {
        left: 0
    }
}