.welcome-page {
    background-color: #f2f3f5;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.welcome-text {
    color: #202020;
}

.buttonswelcome{
    padding-top: 15px;
    display: flex;
    column-gap: 10px;
    justify-content: center;
}

.btn-custom1 {
    border-radius: 4px;
    border-color: #202020;
    background-color: #202020;
    color: white;
}

.btn-custom1:hover{
    background-color: white;
    color: #202020;
    border-color: #202020;
}

.btn-custom2 {
    border-radius: 4px;
    border-color: #202020;
    background-color: transparent;
    color: #202020;
}

.btn-custom2:hover{
    background-color: #202020;
    color: white;
    border-color: #202020;
}


.boxwelcome{
    padding: 25px 45px;
    border: 2px solid #818cf7;
    border-radius: 8px;
    background-color: white;
}