

iframe {
    width: 95%;
    aspect-ratio: 16/9;
}

#contact {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.app {
    background-color: rgba(50, 50, 50, 0.5);
    border-radius: 10px;
    margin: 10px;
    border: 1px;
    height: 10%;
    width: 10%;
}

.app:hover {
    background-color: rgba(50, 50, 50, 1);
    cursor: pointer;
    border-radius: 10px;
}

.app-image {
    padding: 10px;
    background-color: rgba(250, 250, 250, 0.1);
    border-radius: 10px;
}

.app-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    border-radius: 10px;
}

@media only screen and (max-width: 900px) {
    .app {
        width: 20%;
        height: 20%;
        margin: 5px;
    }
    .app-image {
        padding: 5px;
        border-radius: 5px;
    }
}

.patch-notes-table {
    margin: 10px auto 10px auto;
    width: 80%;
    tr > td {
        padding: 5px;
        text-align: center;
    }
}