html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background-image: url("/images/background-durban.jpg");
  background-repeat:no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}

main{
    background-color: white;
	background-color: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    padding: 2em;
}

footer a{
    border-bottom: 1px rgba(255,255,0.5);
    color: rgba(255,255,255,0.5);
	text-decoration: none;
}

    footer a:hover {
        border-bottom: 1px solid rgba(217,217,217,0.5);
        color: rgba(217,217,217,0.5);
    }

table {
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:first-child th:first-child {
    border-top-left-radius: 10px;
}

tr:first-child th:last-child {
    border-top-right-radius: 10px;
}

tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}