@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
}

a {
  text-decoration: none;
}

/* Footer */
footer {
  background-color: #007bff;
  color: white;
  text-align: center;
  padding: 10px 0;
  position: relative;
  width: 100%;
}

svg {
  width: 31px;
  height: 41px;
  padding: 0;
  color: white;
  fill: white;
}

.btn-center {
    text-align: center;
}


main {
    background-color: #2d3e5b;
    color: white;
    padding: 20px 0;
    /* min-height: calc(100vh - 176px); */
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 16px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}
.message-block {
    background-color: #2d3e5b;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}


.alert.alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}