body {
    margin: 0;
    font-family: 'Karla', serif;
    height: 100%;
    width: 100vw;
    overflow-x: hidden;
}

.start{
    background-image: url("../images/background_main.png");
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100vw;
    background-repeat: no-repeat;
    margin-top: 70px;
}

.start_contet{
    width: 100%
}

.header_message_text{
    font-size: 64px;
    color: white;
    width: 800px;
    font-weight: 600;
    text-align: center;
    margin: auto;
}

.header_message_text2{
    font-size: 20px;
    width: 650px;
    color: white;
    font-weight: 600;
    margin: 20px auto;
    text-align: center;
}

.start_button {
    width: 170px;
    height: 45px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 20px;
    background-color: #b59c72;
    color: white;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 100px auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, border 0.2s ease;
}

.start_button:hover {
    background-color: #fff;
    color: #ac894b;
    box-shadow: 1px 2px 6px rgba(0,0,0,0.5);
}

.button{
    margin-top: 100px;
    color: white;
    background-color: #CAB78D;
    font-size: 16px;
    font-weight: 0;
    width: 160px;
    height: 40px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
}

.button:hover {
    background-color: #ffffff; /* Darker shade */
    color: #b59c72;
}

.h_rectangule1{
    display: block;
    margin: 0 auto; 
}

.title{
    margin-top: 0;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
}


@media only screen and (max-width: 800px) {
    
    .start_contet{
        margin-top: -50px;
    }

     .header_message_text{
        font-size: 28px;
        color: white;
        width: 100%;
        font-weight: 600;
    }

    .header_message_text2{
        font-size: 18px;
        width: 100%;
        color: white;
        font-weight: 300;
    }

    .h_rectangule1{
        display: block;
        margin: 0 auto; 
        height: 9px;
        width: 25px;
    }

    .title{
        margin-top: 0;
        font-size: 30px;
        font-weight: bold;
    }

}

@media only screen and (max-width: 1400px) and (min-width: 800px){

    .header_message_text{
        font-size: 44px;
        color: white;
        width: 90%;
        font-weight: 600;
    }

    .header_message_text2{
        font-size: 20px;
        width: 100%;
        max-width: 600px;
        color: white;
        font-weight: 600;
    }

    .button{
        margin-top: 100px;
        color: white;
        background-color: #CAB78D;
        font-size: 16px;
        font-weight: 0;
        width: 160px;
        height: 35px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        -webkit-transition-duration: 0.4s; /* Safari */
        transition-duration: 0.4s;
    }

    .h_rectangule1{
        display: block;
        margin: 0 auto; 
        height: 9px;
        width: 25px;
    }

    .title{
        margin-top: 0;
        font-size: 40px;
        font-weight: bold;
    }

}


