* {
    box-sizing: border-box;
}

h1 {
    text-align: center;
}

body {
    margin: auto;
    margin-top: 0px;
    background-color: #f6f6f8;
}

.main-container {
    background: #ffffff;
    border-width: 1px;
    border-style: solid;
    border-color: #e9e7e7;
    padding: 40px 40px 10px 40px;
    max-width: 720px;
    margin: auto;
    box-shadow: 2px 2px 2px 2px #ebeaea;
    border-radius: 10px;
}

.top-header {
    font-family: Arial, Helvetica, sans-serif, 'Times New Roman', Times, serif;
    color: #4b4d4d;
}

.content-header {
    font-family: Arial, Helvetica, sans-serif, 'Times New Roman', Times, serif;
    color: #4b4d4d;
}

.hr1 {
    border-top: 0.5px solid;
    border-color: #e0e0e0;
    margin-bottom: 10px;
}

.hr2 {
    border-top: 0.3px solid;
    border-color: #e0e0e0;
    margin-bottom: 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0 -10px 20px -10px;
}

.textarea {
    border: 2px dashed #bbbaba;
    margin: 0px 10px -10px 10px;
    padding: 10px 0 80px 0;
    width: 100%;
    text-align: center;
    border-radius: 10px;
}

.button {
    background: #8f1f17;
    color: #e0e0e0;
    padding: 10px 35px;
    border-style: none;
    border-radius: 15px;
}

.button2 {
    background: #bbc1cf;
    color: #ffffff;
    padding: 10px 35px;
    border-style: none;
    border-radius: 15px;
}

@media(max-width: 480px) {

    .column--mobile {
        width: calc(100%)
    }

    .button--mobile {
        width:60%;
    }

    .content-header--mobile {
        font-family: Arial, Helvetica, sans-serif, 'Times New Roman', Times, serif;
        color: #4b4d4d;
        text-align: center;
    }
    
}