* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0px;
}

/* Main header */
header {
    background-color: white;
    position: fixed;
    float: left;
    margin: 0px;
    width: 50%;
    height: 100vh;
    text-align: center;

}

.flex-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header h1 {
    font-size: 4em;
    padding: 0px;
    margin: 0px;
}

header h3 {
    margin-top: 0px;
    margin-bottom: 12px;
}


/* Main navigation */
nav ul {
    list-style-type: none;
    padding: 0;

    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

nav li {
    list-style: none;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1.5em;
}

nav a {
    text-decoration: none;
    color: black;
}

nav a:hover {
    text-decoration: underline;
}

/* Font awesome icons/buttons */
.fa {
  padding: 10px;
  font-size: 0.8em;
  width: 40px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
}

.fa:hover {
  text-decoration: none;
}

.fa {
    background: black;
    color: white;
}

.fa-envelope-o:hover {
    background: gray;
}

.fa-facebook:hover {
    background: #3B5998;
}

.fa-instagram:hover {
    background: #833ab4;
    background: linear-gradient(
        to bottom right,
        #833ab4,#fd1d1d,#fcb045
    );
}

/* Main content (right panel) */
div.content {
    background-color: ghostwhite;
    color: black;
    float: right;
    width: 50%;
}

.content section {
    padding: 20px;
}

.content section#Gallery {
    min-height: 100vh;
}

/* Links */
.link-list__item {
    margin: 8px;
}

a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}


/* Footer */
footer {
    padding-top: 10px;
    font-size: 0.8em;
    text-align: center;
    color: gray;
}