html {
    color: #c4ac97;
}

.img-container {
    width: 90%;
    /*width: 660px;*/
    height: 440px;
    display: flex;
    justify-content: center;
    margin-top: 48px;
    border: 7px solid white;
    background-color: gray;
}


img {
    display: block;
    width: auto;
    max-height: 100%;
}


.item {
  display: flex;
  height: inherit;
  width: inherit;
}

.font-change {
    color: #808080;
}

/*Info boxes*/
.info {
    display: flex;
    width: 90%;
    flex-direction: column;
    align-items: center;
    margin-top: 32px;
    justify-content: center;
}

.info h1 {
    font: 40px "Crimson Text", serif;
    color: #231202;
}


.info-box-container {
    margin-top: 32px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 32px;
}

.info-box {
    display: flex;
    flex-direction: column;
    width: 31%;
    border-top: solid 8px white;
}

.info-box h2{
    font-size: 22px;
    padding: 24px 0;
    color: #231202;
}

.info-box p {
    margin-top: 16px;
}

.italic {
    font-style: italic;
}

.button-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 32px;

}

.button-box {
    display: flex;
    width: 31%;
    justify-content: center;
}

.button {
    color: black;
    padding: 8px 24px;
    background-color: gray;
    border-radius: 4px;
}

.button-box:hover .button {
    background-color:rgb(130, 98, 74);
    transition: background-color 750ms ease;
}


/*for mobile */
@media only screen and (max-width: 768px) {

    .large {
        display: none;
    }

    .img-container {
        display: block;
        max-width: 90%;
        height: auto;
    }

    img {
        max-width: 100%;
        height: auto;
        margin: auto;
    }

    .info {
        width: 90%;
    }

    .info-box-container {
        flex-direction: column;
    }

    .info-box img {
        max-width: 480px;
        margin: auto;
    }

    .info-box {
        width: 100%;
        margin-bottom: 10px;
    }

    .button-container {
        justify-content: center;
    }

    .dropdown button {
        padding: 5px;
    }
}
