/* Style the tab */
.tab {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    margin-top: 120px;
    /* min-width: 1px; */
    max-width: 100%;
    border-radius: 20px;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

/* 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;
    border-radius: 20px;
}

/* Style the tab content */
.tabContent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
    background-color: #fff5;
    border-radius: 100px;
}

.container,
#north,
#south,
#east,
#west {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
    margin: 50px;
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    background-color: #fff5;
    position: fixed;
    top: 0;
    width: 600px;
    right: 0;
    height: 100px;
}

.company-name {
    top: 0;
    left: 0;
    /* display: block; */
}

body {
    background: url(./images/background.jpg) center / cover;
}
