body {
    font-family: 'Montserrat', sans-serif;
}

h1 {
    text-align: center;
    margin: 10px 0 25px;
    color: rgb(26, 25, 25);
    text-transform: uppercase;
    color: #3a4453;
    font-size: 35px;
}

.tabela {
    background-color: #485568;
    color: whitesmoke;
    padding: 5px;
    border-radius: 5px;
    min-width: 100%;
}
.tabela th,
.tabela td {
    padding: 3px 5px;
}
.table-names {
    border: 1px dashed black;
    display: flex;
}

.gif {
    border: 4px solid #485568;
    outline-offset: -10px;
    border-radius: 20px;
    display: block;
    max-width: 75%;
    margin: 0 3px;
}
.punchline {
    font-family: 'Raleway', Arial, sans-serif;
    text-transform: lowercase;
    color: #485568;
    font-weight: 600;
    font-size: 28px;
    transition: 0.3s ease-out;
}

.punchline:hover {
    font-size: 30px;
}

.demo_wrapper {
    /* border: 5px solid green; */
    min-height: 100vh;
    width: 100%;
    box-sizing: border-box;
}
.top {
    /* border: 1px dashed black; */
}
.middle {
    /* border: 1px dashed black; */
    display: flex;
    justify-content: space-evenly;
}
.left {
    /* border: 1px dashed black; */
    max-width: fit-content;
    display: flex;
    align-items: center;
}
.right {
    /* border: 1px dashed black; */
    display: flex;
    flex-direction: column;
}
.excel_container {
    -webkit-box-shadow: 2px 3px 7px -3px rgba(0,0,0,0.3);
    -moz-box-shadow: 2px 3px 7px -3px rgba(0,0,0,0.3);
    box-shadow: 2px 3px 7px -3px rgba(0,0,0,0.3);
}

.data_wrapper {
    /* border: 5px dashed black; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    /* border: 1px dashed rgb(7, 1, 1); */
}

.download_btn {
    font-family: 'Raleway', Arial, sans-serif;
    display: block;
    cursor: pointer;
    font-weight: 400;
    font-size: 16px;
    transition: 0.3s ease-out;
    color: #fff;
    display: inline-block;
    background-color: #5f8f00;
    padding: 15px 25px;
    border-radius: 5px;
    border: none;
    box-shadow: 2px 3px 7px -3px rgba(0,0,0,0.3);
    margin: 15px auto;
}

.download_btn:hover {
    color: #fff;
    background-color: #517901;
}

/* Table from db */
.dataInBase {
    margin: 25px 0 7px;
    display: inline-block;
}
#delete_data {
    margin-left: 25px;
    background-color: tomato;
    color: white;
    border: none;
    border-radius: 7px;
    padding: 7px 15px;
    margin-bottom: 7px;
    box-shadow: 2px 3px 7px -3px rgba(0,0,0,0.3);
    cursor: pointer;
}
.preview {
    font-family: 'Raleway', Arial, sans-serif;
    width: 100%;
    color: rgb(226, 226, 226);
    background-color: #3a4453;
    border-radius: 7px;
    padding: 3px;
    margin-top: 0px;
}
img {
    box-shadow: 2px 3px 7px -3px rgba(0,0,0,0.3);
}