body {
    background-color: rgb(171, 172, 177);
}

.cont {
    max-width: 2000px;
    padding-top: 20px;
    padding-left: 20px;
    margin: 0px ;
    display: grid;
    grid-gap: 0px;
    
}
    
.bubble {

    grid-column: 2 / 2;
    margin-right: 0px;

    img{
        width: 400px;
        height: auto;
        padding-left: 60px;
        padding-right: 0px }

    
}

.text {

    max-width: 500px;
    max-height: fit-content;
    grid-column: 2 / span 2;
    grid-column-start: 3;

    background-color: rgb(66, 66, 64);
    border-radius: 20px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    border-style: dotted;
    margin-left: 0px;

    font-family: "Tangerine", cursive;
    text-align: center;
    font-size: 27px;
    color: rgb(216, 215, 203);
    line-height: 1.5;


    
}

.photos {

    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
    
    grid-column: 3 /  3;
    grid-row: 5 /  5;
    grid-column-start: 2;
    grid-row-start: 2;

    max-width: fit-content;
    max-height: fit-content;
    margin-left: 450px;
    margin-right: auto;
    padding:20px;
    border-radius: 10px;
    border-style: ridge;
    border-color: rgb(211, 210, 199);
    background-image: radial-gradient(circle, rgb(189, 188, 183) 3px, transparent 3px);
    background-size: 10px 10px;
    background-color: #c5c5bd;

    img{
        width: 500px;
    }
}
  