/* body elements */

body {
    background-image: url(../images/background_texture.png);
    background-repeat: repeat-y;
    background-size: 100vw;
    text-align: center;
    margin: 0;
    padding:0;
    scroll-behavior: smooth
}

/*Making a cursor pointer out of every link*/
.a:hover{
    cursor: pointer;
}


/* Index Header */

.headerWrapper {
    margin: 0;
    padding: 0;
    background-image: url("../images/main_banner.png");
    background-repeat:no-repeat;
    background-size:contain;
    background-position:center;
    position: absolute;
}

.topHeader {
    margin:0;
    margin-bottom: 8vh;
    padding:0;
}

.headerBanner {
    position: relative;
    max-width: 100%;
    z-index:-1;
    
}

.headerLogoCol {
    margin-top: -14vh;
}

.headerLogo {
    max-width: 100%;
    min-width: 200px;
}

/*Index Footer*/

#footer {
    width: 80%;
    margin-left: 10%;
}

.footerTitle img {
    max-width:10%;
}

.footerText a:hover {
    color: rgb(83, 3, 0);
    cursor: pointer;
}

/*Container-Row-Col edits*/
.custom-margin-top {
    margin-top: 4vh;
}

.custom-margin-bottom {
    margin-bottom: 4vh;
}

.custom-margin-zero {
    margin:0
}

.custom-text-align-left {
    text-align:left;;
}

.page-image {
    max-width: 100%;
}

.crew-image {
    max-width:75%;
}

.photoRow img{
    cursor: zoom-in;
}

.custom-table table {
    border-collapse: collapse;
}

.custom-table th {
    background-color:rgba(131, 78, 8, 0.8);
    Color:white;
}
.custom-table th, td {
    width:10%;
    text-align:center;
    border:1px solid black;
    padding:5px;
    font-family: 'Baloo Da 2', Tahoma, sans-serif;
    text-decoration: none;
    font-weight: normal;
}

hr.custom-hr{
    border-top: 1px solid rgba(51, 17, 15, 0.8);
    max-width:40%;
}

.customRoadkillButton {
    height: auto;
    display: inline-block;
    background-color:  whitesmoke;
    font-family: 'Sniglet', Tahoma, sans-serif;
    font-size: 120%;
    color: #111;
    text-align: center;
    padding: 1% 6%;
    border-radius: 4%;
    text-decoration: none;
    transition: 0.5s;
}

.customRoadkillButton:hover {
    color: rgb(83, 3, 0);
    transform: scale(0.95);
    cursor: pointer;
}

.thankyouTable,
.thankyouTable tr,
.thankyouTable td {
    border:0
}

.thankyouTable .left{
    text-align: right;
}

.thankyouTable .right {
    text-align: left;
}



/*Bootstrap Edits*/
.align-items-center {
    display: flex; 
    align-items: center;  /*Aligns vertically center */
    justify-content: center; /*Aligns horizontally center */
}

a:not([href]) {
    color:whitesmoke;
}


