body {
    background-color: #F4E3D3;
    margin: 0px;
    padding: 0px;
    display: block;
    margin: 8px;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    width: 650px;
    background-color: #FFF;
    position: relative;
    padding: 40px 70px;
    position: absolute;
    top: 50px;
    bottom: auto;
    left: 50%;
    margin-left: -395px;
}

div {
    display: block;
    unicode-bidi: isolate;
}

img {
    overflow-clip-margin: content-box;
    overflow: clip;
    size: 5px;
}

footer {
    background-color: #A65F2B;
    position: inherit;
    width:790px;
    margin-left:-395px;
    left:50%;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    text-align: center;
}

header {
    z-index: 1000;
    background-color: #A65F2B;
    position: absolute;
    width:790px;
    margin-left:-395px;
    left:50%;
    height: 40px;
    color:white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

hr {
    border: none;
    border-top: 3px solid #A65F2B;
    margin: 0px 0;
}

h4 {
    font-family: Arial, Helvetica, sans-serif;
    color:white;
    text-align: center;
}

h2 {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    bottom:30%;
    position: relative;
    left:5%;
}

h1 {
    color: #7a451f;
}

ol li {
    margin-top: 10px;
}

.text {
    text-align: left;
    margin-top: 20px;
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: #A65F2B;

}

.title {
    color: #A65F2B;
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    font-size: larger;
    font-weight:600;

}

.footer-text {
    color: #FFF;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    position: relative;
    font-size: 15px;
    margin-bottom: 5px;
}

ul.bottons {
    color: #FFF;
    text-align: center;
    position: relative;
    margin-top:40px;
    
}

li {
    margin-top: 5px;
    position:inherit;
  
    button:first-child {
        margin-right: 15px
    }

    button:last-child {
        margin-bottom: 20px
    }
}

ul.social-links {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-color: #F4E3D3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-links a:hover {
    background-color: #C68642;
}    

/* From Uiverse.io by alexroumi */ 
button {
    padding: 15px 25px;
    border: unset;
    border-radius: 15px;
    color: #212121;
    z-index: 1;
    background: #e8e8e8;
    position: relative;
    font-weight: 1000;
    font-size: 17px;
    transition: all 250ms;
    overflow: hidden;
    min-width: 220px;
}

button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 15px;
    background-color: #A65F2B;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
    box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27);
    transition: all 250ms
}

button:hover {
    color: #e8e8e8;
}

button:hover::before {
    width: 100%;
}