body {
    background-color: #FBDEDB;
}

.content {
    max-width: 1440px;
    margin: 0 auto;
}

.information {
    padding: 2% 5%;
    background: url('../imgs/detail/bg.png') no-repeat;
    background-size: contain;
}

.inform {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Menu Container */
.word {
    font-family: "Oliver Regular";
    font-size: 25px;
}

/* Menu Item */
.menutext {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: "Oliver Regular";
}

/* Line Before Text */
.menutext .line1 {
    width: 50px;
    height: 2.5px;
    background-color: #5C4F66;
    margin-right: 1%;
    transition: background-color 0.3s ease;
}

.menutext .line2 {
    width: 30px;
    height: 2.5px;
    background-color: rgb(92, 79, 102, 0.5);
    margin-right: 2.5%;
    transition: background-color 0.3s ease;
}

/* Text Style */
.menutext .quote1 {
    font-weight: bold;
    letter-spacing: 2px;
    color: #5C4F66;
    text-decoration: none;
    font-family: "Oliver Regular";
}

.menutext .quote2 {
    font-weight: bold;
    letter-spacing: 2px;
    color: rgb(92, 79, 102, 0.5);
    text-decoration: none;
    font-family: "Oliver Regular";
}

/* Hover Effects */
.menutext:hover .quote1,
.menutext:hover .quote2 {
    color: #1c1c42;
}

.menutext:hover .line {
    background-color: #1c1c42;
}

.inform h1 {
    font-family: Legwork Demo;
    font-size: 70px;
    color: #1C1C42;
    line-height: 40px;
    white-space: nowrap;
}

.name {
    position: relative;
    margin-top: -20%;
    width: 25%;
    right: -100px;
}

.namemobile {
    display: none;
}

.text {
    position: relative;
    width: 25%;
    left: -120px;
    top: 80px;
}

.image {
    width: 50%;
}

.inform h2,
.button h2 {
    font-size: 25px;
}

.inform p {
    font-family: "Nunito Sans", sans-serif;
    font-size: 18px;
}

/*button*/
.button {
    display: flex;
    justify-content: center;
    gap: 10%;
    font-family: "Oliver Regular";
}

.button a {
    text-decoration: none;
    color: #5B4F64;
    font-size: 22px;
}

.button a:hover {
    color: #1c1c42;
}

.buttondonate {
    background: url('../imgs/detail/left.png') no-repeat center center;
    background-size: contain;
    padding: 3%;
}

.buttonadoption {
    background: url('../imgs/detail/right.png') no-repeat center center;
    background-size: contain;
    padding: 3%;
}

/*tablet*/
@media screen and (max-width: 1280px) {
    .name {
        width: 25%;
        right: -1%;
    }
}

@media screen and (max-width: 980px) {
    .name {
        width: 25%;
        right: 2%;
    }

    .text {
        left: -50px;
        width: 40%;
    }

    .button a {
        font-size: 18px;
    }

    .word {
        font-family: oliver;
        font-size: 20px;
    }

    .inform h1 {
        font-size: 60px;
    }

    .inform h2 {
        font-size: 20px;
    }

    .inform p {
        font-size: 16px;
    }

}

@media screen and (max-width: 900px) and (min-width:769px) {

    .text {
        left: -50px;
        width: 40%;
    }

}

@media screen and (max-width: 768px) {
    .name {
        width: 30%;
        right: -15px;
        margin-top: -10%;
    }

    .inform h1 {
        font-size: 50px;
    }

    .inform {
        margin-bottom: 5%;
    }

    .menutext .line1 {
        width: 50px;
        height: 2.4px;
    }

    .menutext .line2 {
        width: 30px;
        height: 2.4px;
    }

    .buttonadoption,
    .buttondonate {
        padding: 4%
    }

    .text {
        width: 50%;
    }
}

@media screen and (max-width: 686px) {
    .name {
        right: 15px;
    }
}


/*mobile*/
@media screen and (max-width: 600px) {

    .arrow {
        width: 8%;
    }

    .information {
        padding: 5%;
    }

    .image {
        width: 100%;
        margin-left: 5%;
        margin-bottom: -10%;
    }

    .inform {
        flex-direction: column;
        align-items: center;
    }

    .name {
        display: none;
    }

    .namemobile {
        display: block;
        text-align: center;
        margin-bottom: -15%;
        font-size: 50px;
    }

    .namemobile h1 {
        font-size: 60px;
    }

    .text {
        margin-bottom: 20%;
        left: 0;
        text-align: center;
        width: 100%;
    }

    .text p {
        text-align: justify;
    }

    .menutext {
        justify-content: center;
        align-items: center;
    }

    .word {
        margin-bottom: 10%;
    }

    .menutext {
        display: flex;
    }

    .button {
        flex-direction: column;
        align-items: center;
    }

    .buttondonate {
        padding: 10%
    }

    .buttonadoption {
        background: url('../imgs/detail/adoptionbuttonmobile.png') no-repeat center center;
        background-size: contain;
        padding: 10%;
    }
}