body {
    background-color: #000000;
    overflow: hidden;
}

main::after{
    content: "";
    position: fixed;
    top: 0;	
    left: 0;

    min-height: 100vh;
    width: 80vh;
    background: linear-gradient(92deg, #000 25%, rgba(0, 0, 0, 0) 75%) no-repeat;
}

main .place {
    display: none;
    height: 100vh;
    
}

main .place.selected {
    display: block;
}

main .place .image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    position: absolute;
    top: 0;
    left: 120px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    max-width: 380px;
    z-index: 1;
}

.content .placeName{
    color: white;
    font-size: 48px;
    font-family: "Secular One";
    font-weight: 400;
    margin-bottom: 20px;
}

.content .description {
    color: white;
    font-size: 16px;
    font-family: "Rubik";
    line-height: 24px;
}

.buttons {
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    right: 0;
    width: 180px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: 16px;
}

.buttons .button {
    border: none;
    background-color: #c74646;
    width: 90px;
    height: 90px;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.buttons .button img {
    border-radius: 50%;
}

.buttons .button.selected{
    transform: scale(1.2);
    box-shadow: 0 0 10px #D9D9D9;
}

.buttons .button.BH.selected{
   box-shadow: 0 0 10px #0093f5;
}

.buttons .button.OuroPreto.selected{
    box-shadow: 0 0 10px #ffffff;
}

.buttons .button.Mariana.selected{
    box-shadow: 0 0 10px #eec028;
}

.buttons .button.Tiradentes.selected{
    box-shadow: 0 0 10px #d3d297;
}

.buttons .button.Diamantina.selected{
    box-shadow: 0 0 10px #97d9ff;
}

.buttons .button.Inhotim.selected{
    box-shadow: 0 0 10px #539626;
}

.buttons .button.MonteVerde.selected{
    box-shadow: 0 0 10px #1ce00a;
}