* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.modal-container {
    height: auto;
}

/* If the width is less than 1000px, the modal-container will be 100% */
@media (max-width: 1000px) {
    .modal-container {
        width: 100%;
        height: 100%;
    }
}

.font-headline {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    color: #333;
}

.font-body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 1.5;
    color: #666;
}

.font-accessory {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.5;
    color: #999;
}

.font-button {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
}

.default-padding {
    padding: 20px;
}

.default-padding-horizontal {
    padding-left: 20px;
    padding-right: 20px;
}

.default-padding-vertical {
    padding-top: 20px;
    padding-bottom: 20px;
}

.background-color {
    background-color: black;
    /* Light gray background */
}

.primary-text-color {
    color: white;
    /* Dark gray text color */
}

.secondary-text-color {
    color: white;
    /* Light gray text color */
}


.primary-color {
    color: #00796b;
}

.button-primary {
    display: inline-flex;
    /* Better than inline-block */
    justify-content: center;
    align-items: center;
    background-color: #00796b;
    /* Use primary color */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.button-primary:hover {
    background-color: #004d40;
    /* Highlight on hover */
    background-color: #004d40;
    /* Highlight on hover */
    transform: scale(1.05);
    /* Scale up on hover */
    transition: all 0.1s ease;
    /* Smooth transition */
}

.button-secondary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: #fff;
    padding: 10px 20px;
    border: 1px solid white;
    border-radius: 100px;
    cursor: pointer;
}

.button-secondary:hover {
    
    /* Highlight on hover (dark gray) */
    background-color: #222;
    /* Highlight on hover */
    transform: scale(1.05);
    /* Scale up on hover */
    transition: all 0.1s ease;
    /* Smooth transition */
}
