/*dQw4w9WgXcQ*/

body {
    background: linear-gradient(to bottom right, #000000, #000011, #03033c, #060649, #07075a, #090961, #08088a);
    font-family: 'Raleway', arial, sans-serif;
    color: whitesmoke;
    margin: 0;
    padding: 0;
    max-width: 100vw;
}

.landing-container {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100%;
}

#landing-background {
    background-color: black;
    background-image: url("images/background.jpg");
    background-size: cover;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

ul {
    list-style-type: none;
}

.bottom-left {
    position: absolute;
    bottom: 30px;
    left: 27px;
    font-size: 5vw;
}

.bottom-right {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: max(12px, 1.2vw);
}

.top-right {
    position: absolute;
    top: 10px;
    right: 20px;
}

.top-right li {
    color: white;
    float: right;
}

.logo img {
    width: min(67px, 12vw);
    height: auto;
    padding-right: min(25px, 2.5vw);
    opacity: 50%;
}

.logo img:hover {
    opacity: 100%;
    transition: .35s;
}

a {
    color: inherit;
    text-decoration: none;
}

.main-content {
    width: 100%;
    max-width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    padding-top: 30px;
}

.aboutMe {
    padding-top: 0;
}

.aboutMe-container {
    box-sizing: border-box;
}

.experience {
    padding-top: 0;
}

.main-content header {
    margin: 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.main-content header h1,
.main-content header h2,
.main-content header h3 {
    margin: 0;
    box-sizing: border-box;
}

.main-content header h1 {
    padding: 20px;
}

.main-content header h3 {
    font-style: italic;
    color: gold;
    padding-bottom: 5px;
}

.profilePic {
    width: 30%;
    padding-left: 6vw;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.profilePic img {
    width: 100%;
    height: auto;
    border-radius: 25%;
}

.bio {
    width: 70%;
    height: auto;
    min-height: 25%;
    float: right;
    margin: 0 4% 2% 0;
    padding: 1% 2%;
    box-sizing: border-box;
}

.separator {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 20px;
}

.separator div {
    padding: 10px 65px;
    width: 90%;
}

.separator-line {
    border: none;
    height: 2px;
    background-color: #dddddd;
}

.container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

.level2container {
    padding-top: 20px;
}

.column {
    flex: 1;
    padding: 0 1vw;
    box-sizing: border-box;
    min-width: 0;
    text-align: center;
}

.column:first-child {
    padding-left: 5.5vw;
}

.column:last-child {
    padding-right: 5.5vw;
}
.gallery-container {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.gallery-section {
    flex: 1;
    min-width: calc(33.33% - 10px);
    margin: 5px;
    box-sizing: border-box;
}

.gallery-image {
    height: auto;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

footer {
    text-align: center;
    margin: 0 0 6px 0;
    padding: 0;
}

footer p {
    max-height: 100%;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .bottom-left {
        bottom: 10px;
        left: 10px;
    }
    .main-content {
        flex-direction: column;
        align-items: stretch;
        width: 100vw;
        padding-top: 0;
    }
    .main-content * {
        width: 100%;
    }
    .container {
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
    }
    .column {
        padding: 2vw 5vw;
    }
    .level2container {
        padding: 0;
    }
    .separator div {
        padding: 10px 0;
    }
    .profilePic {
        padding: 0 0 2vw 0;
    }
    .profilePic img {
        float: none;
        width: 50%;
    }
    .bio {
        text-align: center;
        margin: 0;
        padding: 0  5vw;
    }
    .gallery-section {
        width: 100%;
        margin: 0 0 1vw 0;
    }
}