body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: grid;
    align-content: stretch;
    align-items: stretch;
    flex-direction: column;
    background: radial-gradient(circle at 40% 90%, rgb(69, 0, 256), rgb(122, 94, 254), rgb(191, 185, 253));
}

h1 {
    margin-bottom: 20px;
    color: #f1f1f1;
    font-size: 42px;
    text-align: center;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
}

p {
    color: #f1f1f1;
    font-size: 20px;
    line-height: 1.1;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

#gallery-container {
    display: flex;
    align-items: center;
    overflow-x: auto; /* Enable horizontal scrollbar */
    height: auto;
    min-height:400px;
    width: 100%;
    padding-bottom: 1.5em;
}

#gallery-container img {
    object-fit: contain; /* Display images as cover */
    height: 420px;
    width: 100%;
    border-radius: 15px;
    border: #f1f1f1 3px solid;
    margin: 1em 0.75em;
}

#hero {
    min-height: 200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#main {
    height: 100%;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#text-welcome {
    width: 100%;
    max-width: 780px;
}
