#inf{
    width: 100vw;
    height: 800px;

    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("./images/i.png");
    display: flex;

    flex-direction: column;         
    align-items: center;           
    justify-content: center;  
    
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#inf p, #inf strong {
    color: white;
}

#inf p{
    font-size: medium;
}

#inf strong{
    font-size: large;
}

#inf button{
    background-color: aqua;
    outline-color: black;
}

#prices{
    width: 100vw;
    height: 500px;

    background-color: rgb(50, 50, 50);
    display: flex;

    flex-direction: column;         
    align-items: start;   
    
    padding: 20px;
    gap: 20px;
}

#prices strong, #prices p{
    color: white;
}

#prices strong{
    font-size: 25px;
}

#prices p{
    font-size: 20px;
}

.label{
    font-size: 30px;
    background-color: rgb(50, 50, 50);
    display: flex;
    width: 100vw;
    height: 40px;
    margin: 0;
    color: white;
    text-align: center;
    padding: 20px;
}