.accom-content-box {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-content: center;
    flex-wrap: wrap;
    
    height: 100%;
    width: 100%;
}
.accom-content-box > a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;

    margin-top: 5px;
    margin-bottom: 5px;

    width: 650px;
    height: 600px;
}
@media (max-width: 1000px){
    .accom-content-box > a {
        text-decoration: none;
        display: flex;

        width: 100%;
        height: 300px;
    }
}

.accom-pane {
    display: flex;
    
    box-shadow: 0px 0px 8px var(--black);

    width: 100%;
    height: 100%;

    overflow: hidden;

    border: 5px solid var(--green);
    border-radius: 20px;
}
@media (max-width: 1000px){
    .accom-pane {
        margin-left: 5px;
        margin-right: 5px;

        width: 95%;

        border: 5px solid var(--green);
    }
}

.accom-pane-grid {
    display: grid;
    grid-template-rows: 100px 1fr 300px;
    
    width: 100%;
    height: 100%;
    
    overflow: hidden;
}
@media (max-width: 1000px){
    .accom-pane-grid {
        grid-template-rows: 1fr 2fr 4fr;
    }
}
.accom-pane-grid > h1 {
    font-family: 'simple-beauty';
    text-align: center;

    color: black;
    font-size: 4rem;
}
@media (max-width: 1000px){
    .accom-pane-grid > h1 {
        font-size: 2.5rem;
    }
}
.accom-pane-grid > p {
    font-family: 'core-bandi-face';
    color: var(--black);
    text-align: justify;
    font-size: 1.5rem;

    padding-left: 2.5%;
    padding-right: 2.5%;

    width: 95%;
    height: 100%;
}
@media (max-width: 1000px){
    .accom-pane-grid > p {
        font-size: .8rem;
    }
}
.accom-pane-grid > img {
    display: block;
    margin: 0 auto;
    
    max-height: 250px;
    max-width: 100%;
    
    width: auto;
    height: 100%;
    
    overflow: hidden;

    border-radius: 20px;
}
@media (max-width: 1000px){
    .accom-pane-grid > img {
        object-fit: contain;
        box-shadow: 0px 0px 0px var(--black);

        width: auto;
        height: 90%;
    }
}