* {
    margin: 0;
    padding: 0;
}

.container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vw;
    background: linear-gradient(navy, black);
}

.col {
    width: 10vw;
    height: 10vw;
    border-radius: 0.5rem;
    transition: 0.3s all;
}

.col:hover {
    transform: scale(1.1);
}

.col:first-child {
    background-image: url("./logo-nota.png");
    background-position: center;
    background-size: cover;
}

.col:last-child {
    background-image: url("./logo-astra.png");
    background-position: center;
    background-size: cover;
}