body {
    background: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

#main {
    background-color: gray;
    /*max-width: 800px;*/
    height: 99%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px;
 }

#top {
    background-color:white;
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
    background-image: url("./ico/garminTitle.png");
    background-size:contain; 
    background-repeat: no-repeat;
    background-position: center;
 }
 #welcom{
    background-color: white;
    justify-content: flex-start;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 90%;
    width: 100%;
display: flex;
justify-content: space-evenly;
 }

#registr {
    display: none;
    background-color:gray;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    }
#registrationForm{
    display: flex;
    flex-direction: column;
    font-size: 20px;
    }
    #clientCard{
        background-color: white;
        justify-content: flex-start;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        height: 90%;
        width: 100%;
display: none;
    }
    #submit{
        background-color: #6699CC;
        height: 50px;
        font-size: 30px;
    }
.btn {
    background-color: #6699CC;
    height: 10%;
    border-radius: 0%;
    border: none;
    width: 60%;
    color: black;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 5px;
    padding: 10px;
    margin-block: 10px;
    }
    #star{
        display: flex;
    }
    .star-rating {
        font-size: 70px;
        cursor: pointer;
    }

    .star-rating::before {
        content: "\2606"; /* Пустая звездочка */
    }

    .star-rating.checked::before {
        content: "\2605"; /* Закрашенная звездочка */
        color: #6699CC;
    }