.landingBox {
    position: relative;

    width: 350px;
    min-width: 400px;
    max-width: 800px;
    aspect-ratio: 1/0.75;
    
    background-color: var(--container);
    border-radius: 30px;

    padding: 40px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mainIcon {
    position: relative;

    width: 200px;
    height: auto;

    fill: var(--on-surface);

}

.buttonBox {
    position: relative;

    margin-top: 75px;

    width: 100%;
    height: auto;

    display: flex;
    align-items: center;
    justify-content: center;
}






@media (max-width: 768px) {

    .landingBox {
        margin-top: 35%;

        width: 80%;
        height: 50%;

        min-width: 0px;
        min-height: 0px;
    }

    .mainIcon {
        width: 150px;
        height: auto;
    }
}