@import 'root.css';

.buttons-wrapper-desktop{
    position: absolute;
    left: 50%;
    top: 100px;
    width: 70%;
    display: flex;
    flex-flow: wrap;
    justify-content: space-around;
    transform: translate(-50%, 50px);
}

.buttons-wrapper-mobile{
    position: relative;
    left: 50%;
    top: 0;
    width: 70%;
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    transform: translate(-50%, 50px);
}

.button {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    padding: 0.5em 1em;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    background-color: var(--color2); /* Bootstrap primary color */
    border: none;
    border-radius: 0.25rem;
    width: auto;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
    margin: 10px;
}

.button:hover {
    background-color: #0056b3; /* Darker shade for hover effect */
}

.button:disabled {
    background-color: #6c757d; /* Bootstrap secondary color for disabled */
    cursor: not-allowed;
}

@media screen and (min-width: 1200px){
    .buttons-wrapper-mobile{
        visibility: hidden;
    }
}

@media screen and (max-width: 1200px){
    .buttons-wrapper-desktop{
        visibility: hidden;
    }
}