
@font-face {
    font-family: 'Nourd';
    src: url('/fonts/nourd_regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Roca';
    src: url('/fonts/Roca.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #faf7f3;
    margin: 0;
    padding: 0;
    font-family: 'Nourd', sans-serif;
}

.containerSELECT {
    background-color: #ffffff;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;            
    max-width: 800px;      
    height: auto;          
    padding: 60px 40px;    
    border-radius: 25px;   
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    text-align: center;
}


.containerSELECT h2 {
    color: #000000; 
    font-size: 42px;
    font-family: 'Roca', sans-serif;
    margin: 0 0 50px 0; 
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none; 
    width: 100%;
}

.containerSELECT p {
    
    display: block;        
    width: 100%;
    max-width: 400px;      
    margin: 20px auto;     
    padding: 18px 30px;   
    background-color: transparent;
    border: 2px solid #000000; 
    border-radius: 50px;      
    color: #000000;
    font-family: 'Nourd', sans-serif;
    font-size: 20px;
    font-weight: 600;     
    text-decoration: none;
    cursor: pointer;     
    transition: all 0.3s ease-in-out;
}


.containerSELECT p:hover {
    background-color: #000000; 
    color: #ffffff;            
    transform: translateY(-3px); 
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); 
}
