main {
    margin-top: 200px;
}


.quest_section {
    width: 100%;
}
.quest_section::after {
    content: '';
    clear: both;
    display: block;
}

.quest_section h1{
    margin-top: 110px;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.topQuest {
    float: left;
    width: 50%;
    height: 50%;
}

.sideQuest {
    float: right;
    width: 50%;
    height: 100%;
}

.questInfoBox{
    float: left;
    width: 50%;
    height: 50%;
}










input[type=text]{
    width:90%;
    border:2px solid #aaa;
    border-radius:4px;
    margin: 8px 0;
    outline: none;
    padding:8px;
    box-sizing: border-box;
    transition:.3s;
}

input[type=text]:focus{
    border-color:dodgerBlue;
    box-shadow:0 0 8px 0 dodgerBlue;
}


textarea{
    width:90%;
    border:2px solid #aaa;
    border-radius:4px;
    margin: 8px 0;
    outline: none;
    padding:8px;
    box-sizing: border-box;
    transition:.3s;
    height: 6.25em;
    resize: none;
}

textarea:focus{
    border-color:dodgerBlue;
    box-shadow:0 0 8px 0 dodgerBlue;
}
