
/*
My style Ruggero
*/


.container{
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    column-gap: 50px;
}

.col{
    flex: 1;
}

p {
    text-align: left;
}

.large {
    font-size: xxx-large;
}

.small {
    font-size: xx-large;
}

.tiny {
    font-size: x-large;
}


.red {
    color: red;
}


.grid-container {
    display: grid;
    /* number of columns */
    grid-template-columns: auto auto auto;
    gap: 5px;
    padding: 10px;
}

/* .grid-container > div { */
/*     text-align: center; */
/*     padding: 20px 0; */
/*     font-size: 30px; */
/* } */

.grid-item {
    padding: 20px;
    text-align: center;
}

.pink {
    color: #ec4899;
}

.bottom {
    position:absolute;
    bottom:0;
}

.right {
    position:absolute;
    right:0;
}

.left {
    position:absolute;
    left:0;
}

/*# sourceMappingURL=main.64821753.css.map*/