* {
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

    /* Set a background image */
    background-image: url('images/background.png');
    background-size: cover;
    background-position: center;
}

.container {
    text-align: center;
    width: 80%;
    max-width: 600px;
    /* Limit the maximum width */
    margin: auto;
    /* Center the container */

    /* Use a neutral background color with some opacity for material design look*/
    background-color: rgba(255, 255, 255, .9);

    /* Add some padding and round corners for aesthetics*/
    padding: 20px;
    border-radius: 15px;

    /* Add some shadow for depth to follow material design principles*/
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);
}

.profile-frame img {
    width: 150px;
    height: auto;

    /* Make the image round following Apple's design guidelines */
    border-radius: 50%;

    /* Add a slight shadow for depth */
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15);

    /* Provide sufficient spacing between elements */
}

.button,
.description {
    display: block;
    /* Make the buttons block elements to fill the container's width */

    margin-top: 10px;
    /* Provide sufficient spacing between elements */

    padding-top: 12px;
    padding-bottom: 12px;
    /* Padding size following Apple's guidelines */

    border-radius: 15px;

    background-color: #F7F3F1;
    color: #343a40;

    text-decoration: none;

    text-align: center;
    font-size: 18px;

    transition: .3s ease-in-out;
    /* Smooth out hover effect transitions*/

}

.button:hover {
    background-color: #7A00FC;
    color: #F7F3F1;
}

.video-container,
.map-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* for 16:9 aspect ratio */
    /* margin-top: 5%; */
}

.video-container iframe,
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* h3 {
    font-style: italic;
} */