html, div, h1, h2, h3, p, body, span, text{
    margin: 0;
    padding: 0;
}

body{
    overflow-x: hidden;
    padding-bottom: 10vh;
}

ul{
    margin: 0;
    padding-left: 1em;
}

ul > li{
    padding: 0.35em 0;
}

body{
    min-width: 100vw;
    min-height: 100vh;
}

#header{
    min-width: 90vw;
    min-height: 6vh;
}

#header{
    padding: 0.5em 5em;
    margin-bottom: 0.6em;
}

#header{
    display: flex;
    align-items: center;
}

#content_container{
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.content{
    /*justify-content: center;*/
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    max-width:92em;

}

.box1{
    display: block;
    width: 45em;
    margin: 0.5em;
}

.box2{
    display: block;
    margin: 0.5em;
    min-width: 43.6%;
}

.accordion {
    cursor: pointer;
    padding: 10px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
}

.panel {
    padding: 1em 1em;
    display: none;
    margin: 0;
    overflow: hidden;
}

#personal_details{
    display: flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
}

#personal_details > div{
    padding: 0 0.5em 0 0;
}

.accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    float: right;
    margin-left: 5px;
    border: 0;
}

.active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
}

#likes_dislikes_flexbox{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.confettiStartButton{
    position: fixed;
    bottom: 0.5em;
    left: 0.5em;
    z-index: 11;

    width: 2em;
    height: 2em;
}

#warning{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;

    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
}

#warning_message{
    /*width: 60vw;*/
    /*height: 60vh;*/
}

#accept:hover{
    cursor: pointer;
}

#personal_details_keys > p, #personal_details_values > p{
    padding-bottom: 0.35em;
    padding-right: 0.35em;
}

