/* ----------------------------------------- */
/* PART ONE - Default for the whole website  */
/* ----------------------------------------- */
body {
    background-color: black;
    font-family: 'Raleway', sans-serif;
}
/* Header and footer  */
.navbar-dark .navbar-nav .nav-link {
    color: #F7DCAF;
    font-size: 1.5rem;
}
.navbar-dark .navbar-brand {
    font-size: 2rem;
}
.navbar-dark .navbar-toggler-icon {
    color: #F7DCAF;
}
.navbar-dark {
    background-color: black;
}
.footerNav .navbar-nav .nav-link {
    color: #F7DCAF;
    font-size: 1.1rem;
}
.footerInfo {
    color: white;
    font-size: 1rem;
}
.footerInfo a {
    color: white;
    font-size: 1rem;
}
a:link {
    color: white;
}
a:hover {
    color: #F7DCAF;
}
hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right,  rgba(0, 0, 0, 0.75),white, rgba(0, 0, 0, 0.75));
}
#logoIcon {
    width: 4rem;
}
/* Title colour */
.title {
    color: white;
}
/* Scrollbar  */
html {
    --scrollbarBG: #CFD8DC;
    --thumbBG: #90A4AE;
}
body::-webkit-scrollbar {
    width: 11px;
}
body {
    scrollbar-width: thin;
    scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}
body::-webkit-scrollbar-track {
    background: var(--scrollbarBG);
}
body::-webkit-scrollbar-thumb {
    background-color: var(--thumbBG) ;
    border-radius: 6px;
    border: 3px solid var(--scrollbarBG);
}
/* Back to top button  */
#topButton {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 2rem; /* Place the button at the bottom of the page */
    right: 1.5rem; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: transparent; /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 1rem; /* Some padding */
    border-radius: 0.5rem; /* Rounded corners */
    font-size: 2rem; /* Increase font size */
}
#topButton:hover {
    background-color: rgb(36, 36, 36); /* Add a dark-grey background on hover */
}

/* ----------------------------------------- */
/* PART TWO - Specific to the homepage       */
/* ----------------------------------------- */
i {
    color: white;
}
i:hover {
    color: #F7DCAF;
}
#section1 {
    height: 40rem;
    background-image: url(index1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    background-size: cover;
    padding-top: 8rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
}

#intro {
    color: #F7DCAF;
    line-height: 2;
    font-weight: 100;
    font-size: 1.23rem;
}

#logoDiv { 
    width:auto; 
    text-align:center; 
    padding: 2rem; 
} 
#logo { 
    max-width: 100%; 
    height: auto; 
}
#open7 {
    color: #F7DCAF;
}
p a {
    color: white;
}