@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

h1 {
    font-weight: 600;
}

h2 {
    font-weight: 600;
}

p {
    font-size: 16px;
}

body {
    background-color: #fff;
    font-family: 'Poppins', 'Arial Narrow', Arial, sans-serif;
    text-align: center;
}

header {
    text-align: center;
    height: 80px;
    font-weight: 600;
}

header.img {
    max-height: 80px;
}

.centered {
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: dashed #252525; */
    /* margin-top: 2em; */
    padding: 1em 0em;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0.5em;
}

button {
    background-color: #252525;
    padding: 1em 2em;
    border-radius: 0.5em;
    border: none;
    color: #fff;
    cursor: pointer;
    font-family: 'Poppins', 'Arial Narrow', Arial, sans-serif;
    font-weight: 600;
    font-size: 1em;
}
button:hover {
    background-color: #252525d9;
}

.tabs {
    display: flex;
    justify-content: center;
}

.tab {
    display: inline-block;
    padding: 10px 20px;
    cursor: pointer;
    /* border: 1px solid #ccc;
    border-bottom: solid #252525; */
    /* background: #f1f1f1; */
}
.tab.active {
    /* background: white; */
    font-weight: 600;
    border-bottom: solid #252525;
}

.tab-content {
    display: none;
    /* border: 1px solid #ccc; */
    padding: 20px;
}

.tab-content.active {
    display: block;
}