@font-face {
    font-family: 'Barlow';
    src: url('fonts/Barlow-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.toggle-button {
    font-family: "Barlow", sans serif;
    font-weight: 600;
    border: 1px solid black;
    padding: 20px 40px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 2rem;
    cursor: pointer;
    background-color: white;
    color: black;
    transition: background-color 0.3s, color 0.3s;
}

.toggle-button-1{
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.toggle-button-2{
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}


.toggle-button.active {
    background-color: black;
    color: white;
}

.content-container {
    display: none;
    text-align: center;
    margin-top: 20px;
}

.content-container.active {
    display: block;
}
