/* Main Body */
#first-div {
    background-image: url("../images/banners/NikoAllisonEng-178.jpg");

}

.text {
    margin: 2rem 10%;
}

#photos {
    display: flex;
    justify-content: space-around;
    padding: 2rem 0;
}

#photos img {
    width: 30%;
}

a {
    color: rgba(156, 78, 0, 1);
    text-decoration: none;
    transition-property: color;
    transition-duration: 0.5s;
}

button {
    color: rgba(213, 211, 210, 1);
    background-color: rgba(156, 78, 0, 1);
    font-size: 1rem;
    border: none;
    border-radius: 1rem;
    padding: 1rem;
    transition-property: color, background-color;
    transition-duration: 0.5s;
}

a:hover {
    color: rgba(147, 72, 0, 0.5);
}

button:hover {
    color: white;
    background-color: rgba(147, 72, 0, 0.5);
}