/**
Palette: https://scrimba.com/links/hometown-palette
RED: #E63946
LIGHT: #F1FAEE
AQUA: #A8DADC
LIGHT BLUE: #457B9D
DARK BLUE: #1D3557

*/

body {
    margin: 0;
    font-family: 'Josefin Sans';
}

img {
    width: 215px;
    border-radius: 50px;
    box-shadow: 0 0 5px black;
}

#container {
    background-color: linear-gradient(red, blue);
    width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px auto;
    border: 5px solid white;
    border-radius: 15px;
    box-shadow: 0 0 5px black;
    overflow: hidden;
}

/* TOP SECTION */
#top-section {
    height: 400px;
    width: 800px;
    display: flex;
    flex-direction: column;
    background-image: url("images/ziggaraut.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
    border-radius: 0 0 10px 10px;
}

#title-top-section,
#title-subtext-top-section {
    color: white;
    text-shadow: 1px 1px 1px black;
}

#title-subtext-top-section {
    margin: 0 auto;
    padding: 5px 10px;
    border-radius: 10px;
}

/* MID SECTION */
#bottom-third-section {
    background-image: linear-gradient(rgb(31, 58, 87), white);
    margin-top: 6px;
    box-shadow: 0 0 5px black;
    border-radius: 10px 10px 0 0;
}

#mid-section {
    width: 800px;
    margin: 0;
    text-align: center;
}

#image-container {
    display: flex;
    justify-content: space-around;
    width: 760px;
    border: none;
    border-radius: 2px 2px 10px 10px;
    padding: 18px 10px;
    margin: 0 auto;
}

#title-mid-section {
    margin: 15px 0 0 0;
    padding: 15px;
    color: white;
}

/* BOTTOM SECTION */
#bottom-section {
    width: 525px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: center;
    margin: 20px auto;
    box-shadow: 0 0 15px black;
    border-radius: 15px;
}

#tour-guide-info {
    width: 300px;
    height: 175px;
    color: #222222;
    text-align: center;
}

#tour-guide-img {
    width: 135px;
    height: 135px;
}