body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: white;
    font-family: sans-serif;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.custom_row {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mt-80 {
    margin-top: 80px;
}

.btn-theme-static {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 10px 40px;
    font-size: 1rem;
    line-height: 1.2;
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
    color: white;
    background-color: #AF1E27;
    border-color: #AF1E27;
}

.btn-theme-static:hover {
    background-color: #FFF8E7;
    color: #AF1E27 !important;
    border-color: #FFF8E7;
}

@media only screen and (max-width: 1400px) {
    .custom_container {
        max-width: 1200px;
        margin: 0 auto;
    }
}