html {
    font-family: Helvetica, sans-serif;
}

body {
    background-color: #fcf3f9;

}

/* Navigation Tabs CSS */

.tab {
    text-align: center;
    overflow: hidden;
    background-color: #9c72ff;
    border-radius: 4px;
    margin-left: -2%;
    margin-right: -2%;
    padding-top: .9em;
    padding-bottom: .6em;
    border-bottom: 5px solid #3900A3;
    font-family: 'Trebuchet MS', sans-serif;
}

.tab_links {
    text-decoration: none;
    color: black;
    background-color: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 15px;
    font-family: 'Trebuchet MS', sans-serif;

}

.tab_links:hover {
    background-color: #3900A3;
    border-radius: 7px;
    color: #F4EBE8;
}

.tab_links:active {
    background-color: #3900A3;
    border-radius: 7px;
    color: #F4EBE8;
}

.active {
    background-color: #3900A3;
    border-radius: 7px;
    color: #F4EBE8;
}

/* Content CSS */

h1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
}

p {
    max-width: 55%;
}



/* Gallery CSS */
div.gallery {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

div.gallery-item {
    margin: 5px;
    border: 1px solid #ccc;
    width: 600px;
}

div.gallery-item:hover {
    border: 1px solid #777;
}

div.gallery-item img {
    width: 100%;
    height: auto;
}

div.gallery-item div.desc {
    padding: 15px;
    text-align: center;
}

/*Footer CSS*/
footer {
    text-align: center;
    height: 100px;
    padding-bottom: 1px;
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 1%;
}

.footer_text {
    font-family: 'Trebuchet MS', sans-serif;
    font-size: 12px;
    color: #3900A3;
    text-align: center;
    margin-left: 35%;
    margin-right: 35%;
    margin-top: 0;
    padding: 0;
    border-top: 2px solid #3900A3
}

.footer_icon {
    width: 35px;
    padding: 0;
    margin: 0;
    margin-left: 1%;
    margin-right: 1%;
    margin-top: 1%;
}

svg {
    padding: 0;
    margin: 0;
    margin-left: 1%;
    margin-right: 1%;
    margin-top: 1%;

}