﻿body {
    font-family: Arial;
}

/* Style the tab */
.tab {
    overflow: hidden;
    background-color: #f1f1f1;
}

    /* Style the buttons inside the tab */
    .tab button {
        background-color: inherit;
        float: left;
        border: none;
        outline: none;
        color: darkgoldenrod;
        cursor: pointer;
        padding: 14px 16px;
        transition: 0.3s;
        font-size: 17px;
    }

        /* Change background color of buttons on hover */
        .tab button:hover {
            background-color: #ddd;
        }

        /* Create an active/current tablink class */
        .tab button.active {
            background-color: #ccc;
        }

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

h2 {
    margin:0;
}

header {
    background-color: #fab434 !important;
    padding: 15px 50px !important;
    position: relative !important;
}

.tab {
    display: flex;
    justify-content: space-evenly;
}

.tabcontent {
    padding: 50px;
    text-align: center;
}

    .tabcontent p {
        width: 40%;
        margin: auto;
    }

    .tabcontent .gallery {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        flex-wrap: wrap;
        margin-top: 70px;
    }

        .tabcontent .gallery img {
            height: 400px;
            width: 500px;
            margin: 50px 30px;
            border-radius: 20px;
            margin-top: 0;
            max-width: -webkit-fill-available;
            object-fit: cover;
        }

.content {
    border-bottom: 1px double darkgoldenrod;
}