body {
    min-height:100vh;
    display: flex;
    flex-direction: column;
}

.headers {
    font-family: Roboto, sans-serif;
    text-decoration: underline;
}

.bodyText {
    padding-left: 13px;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    color: white;
}

.navbar {
    background-color: black;
}

.navbar a {
    font-family: Roboto, sans-serif;
    font-size: 20px;
    color: white;
}

.imageBorder {
    border: 3px solid; 
    margin: 13px;
}

.imageCaption {
    font-style: italic;
    font-family: Roboto, sans-serif;
}

.contact {
    color: white
}

.row {
    display: flex;
}

.column {
    flex: 50%;
    padding: 5px;
}

.button {
    margin-top: 15px;
    margin-bottom: 15px;
}

.buttonLabel {
    font-weight: bold;
    font-size: 20px;
}

.transformImage {
    position: relative;
    top: -4px;
}

footer {
    margin-top: auto;
    height: 70px;
    background-color: black;
    color: white;
}

.footerText {
    position: relative; 
    top: +23px; 
    left: 15px;
    color: white;
    text-decoration: none;
}

.hideScroll {
    overflow-x: hidden;
}

.navbar .navbar-nav .nav-link {
    color: rgb(203, 203, 203);
}

.navbar .navbar-nav .nav-link:hover {
    color: rgb(174, 174, 174);
}

.navbar .navbar-nav .nav-item {
    position: relative;
}

.navbar .navbar-nav .nav-item::after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: white;
    width: 0%;
    content: "";
    height: 2px;
    transition: all 0.5s;
}
  
.navbar .navbar-nav .nav-item:hover::after {
    width: 100%;
}