html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@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;
}

body {
    margin-top:50px;
    margin-bottom:20px;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
.shadow {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.content-margins{
    width:90%;
    margin-right:5%;
    margin-left:5%;
}
.bodybg{
    width:100%;
    background-color:white;
}
.title{
    font-size:74px;
}
.subtitle{
    font-size:44px;
}
.gallery {
    max-width: 1000px;
    margin: auto;
    text-align: center;
    border-top-left-radius:8px;
    border-top-right-radius:8px;
}
.rounded{
    border-radius:8px;
}

.main-image {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 8px;
}

.thumbnails img {
    width: 100px;
    margin: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
}

    .thumbnails img:hover {
        border: 2px solid #333;
    }