@import url('destyle.css');

body {
    margin:0;
    font-family: sans-serif;
    background-color: rgb(236, 233, 227);
}

header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background-color: rgb(156, 101, 61);
}

h1 {
    font-size: 25px;
    font-weight: bold;
    color: white;
}

main {
    margin:auto;
}

.image {
    width: 100%;
    text-align: center;
}

.home-image {
    display: inline-block;
    width: 50%;
    height: auto;
}

.btn-group {
    display:flex;
    gap:70px;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 60px;
}

.btn {
    border:2px solid gray;
    border-radius: 9999px;
    box-shadow: 0px 8px 8px rgb(0,0,0,0.2);
}

.btn1 {
    background-color: beige;
}

.btn2 {
    background-color: rgb(165, 79, 42);
    color: #efefef;
}

.button {
    display:inline-block;
    font-size: 18px;
    font-weight: bold;
    padding:25px 30px;
}

.attention {
    font-size: 14px;
    padding-left: 15px;
    margin-bottom: 20px;
}

.attention2 {
    font-size: 14px;
    padding-left: 15px;
}

@media(max-width:768px) {
    .home-image{
        display: inline-block;
        width:90%;
        margin:25px 0px;
    }
    .btn-group {
        display:flex;
        gap:40px;
        justify-content: center;
        margin-top: 20px;
        margin-bottom: 45px;
    }
    .btn {
        border:2px solid gray;
        border-radius: 9999px;
        box-shadow: 0px 8px 8px rgb(0,0,0,0.2);
    }
}
