/*     border: 5px solid rgb(29, 39, 182); */


*{
    padding: 0;
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif; 
    box-sizing: border-box;    
    text-align: center;
    font-size: 15px;
    color: #444444;
}

*:focus {
    -webkit-tap-highlight-color: transparent;
    outline: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

html {
    min-height: 100%;
    min-width: 100%;
}

body {
    display: flex;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: center;
    min-height: fit-content;
    width: 100%;
    position: fixed;
    background-color: white;
    z-index: 1;   
}

.header-space {
    display: flex;
    justify-content: center;
    min-height: fit-content;   
}

main {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex: 1;
    flex-direction: column;
}

footer {
    display: flex;
    justify-content: center;
    align-content: center;
    min-height: fit-content;
    align-items: flex-end;   
}

h1 {
    font-size: 20px;
    color: #444444;
    font-weight: 500;
}

/* unvisited link */
a.nav:link {
    text-decoration: none;
    padding: 15px;
    color: inherit;
}

/* mouse over link */
a.nav:hover {
    text-decoration: underline;
    color: inherit;
}

/* visited link */
a.nav:visited {
    text-decoration: none;
    color: inherit;
}

/* selected link */
a.nav:active {
    text-decoration: none;
    color: inherit;
}

a.circle:hover {
    filter: brightness(50%);
    text-decoration: none;
    color: none;
}


/* flex box with nothing else */
.box {
    display: flex;
    justify-content: center;
    padding: 10px;
    margin: 10px;
    max-width: 400px;
}

.text-box {
    display: flex;
    align-content: center;
    justify-content: center;
    max-width: 400px;  
}

.spacer {
    display: flex;
    justify-content: center;
    margin: 10px;
}

.rounded-img {
    object-fit: cover;
    border-radius: 50%;
    height: 175px;
    width: 175px;
    filter: brightness(85%);
}

.rounded-icon {
    object-fit: cover;
    border-radius: 25%;
    height: 135px;
    width: 250px;
}

.rounded-text {
    display: flex;
    align-content: center;
    justify-content: center;
    max-width: 400px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    pointer-events: none; 
    position: absolute;
    z-index: 1;
}



/* divs within stack horizontally */
.row-box{
    display: flex;  
    justify-content: center;
    align-items: center;
    flex-direction: row;
    position: relative;
    top: 50%;
    flex-wrap: wrap;
    padding: 10px;
    margin: 10px;
}

/* divs within stack vertically  */
.column-box{
    display: flex;  
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    top: 50%;
    padding: 10px;
    margin: 10px;
}

/* google photos gallery section  */

.gallery {
    display: flex;
    flex-wrap: wrap;
    padding: 8px;
    max-width: 1500px;
}

@media screen and (min-width: 1500px){
.gallery {
    display: flex;
    flex-wrap: wrap;
    padding: 8px;
    max-width: 1500px;
    margin:auto;
  }
}

.gallery-div {
    flex-grow: 1;
    margin: 8px;
    background-color: rgb(255, 255, 255);
    height: fit-content;
}

.gallery-img {
    height: 250;
    object-fit: cover;
    max-width: 100%;
    min-width: 100%;
    vertical-align: bottom;
    flex-grow: 1;
}

.portfolio-img {
    height: 350;
    object-fit: cover;
    max-width: 100%;
    min-width: 100%;
    vertical-align: bottom;
    flex-grow: 1;
}
  
.gallery::after {
    content: "";
    flex-grow: 999999999;
    min-width: 60%;
}

/* end section  */

/* custom scrollbar */
::-webkit-scrollbar {
    width: 16px;
}
  
::-webkit-scrollbar-track {
    background-color: transparent;
}
  
::-webkit-scrollbar-thumb {
    background-color: #d6dee1;
    border-radius: 20px;
    border: 4px solid transparent;
    background-clip: content-box;
}
  
::-webkit-scrollbar-thumb:hover {
    background-color: #a8bbbf;
}

