* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Caros';
    text-decoration: none !important;
}

body {
    font-family: 'Caros';
    background-color: #f4f2ee;
    width: 100%;
    overflow-x: hidden;
    color: #060240;
}

@font-face {
    font-family: 'Caros';
    src: url('./Caros.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.index_all{
    padding: 0 10%;
    height: 100vh;
    padding-block: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.btns{
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.admin_btn{
    padding: 15px 35px;
    background-color: #000;
    border-radius: 30px;
}

.admin_btn a{
    text-decoration: none;
    color: #fff;
}

.book{
padding: 15px 35px;
    background-color: #000;
    border-radius: 30px;
}

.book a{
    text-decoration: none;
        color: #fff;
}

.footer{
    width: 100%;
    position: absolute;
    bottom: 30px;
    text-align: center;
}


@media only screen and (max-width: 1110px) {
    .index_all{
        display: flex;
        justify-content: center;
    }
    .index_all h1{
        text-align: center;
    }
    .btns{
        display: flex;
        flex-direction: column;
    }
}