mainnn {
  justify-content: center;
  align-items: center;
  padding: 50px;
	margin: inherit;
	float: right;
  font-family: 'Roboto', sans-serif; }

.card {
  width: 24rem;
  height: 26rem;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  color: #f0f0f0;
  box-shadow: 0 10px 30px 5px rgba(0, 0, 0, 0.2); }
  .card img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.9;
    transition: opacity .2s ease-out; }
  .card h2 {
    position: absolute;
    inset: auto auto 10px 10px;
    margin: 0;
    transition: inset .3s .3s ease-out;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: normal;
    text-transform: uppercase; }
  .card p, .card a {
    position: absolute;
    opacity: 0;
    max-width: 80%;
    transition: opacity .3s ease-out; }
  .card p {
    inset: auto auto 80px 30px; }
  .card a {
    inset: auto auto 40px 30px;
    color: inherit;
    text-decoration: none; }
  .card:hover h2 {
    inset: auto auto 160px 30px;
    transition: inset .3s ease-out; }
  .card:hover p, .card:hover a {
    opacity: 1;
    transition: opacity .5s .1s ease-in; }
  .card:hover img {
    transition: opacity .3s ease-in;
    opacity: 1; }

.material-symbols-outlined {
  vertical-align: middle; }



/* Create three equal columns that floats next to each other */
.column121 {
  float: left;
  width: 33.33%;
	border: 3px solid #02019a;
	border-radius: 12px;
	margin: 10px;
}

.column121 img{
	border-radius: 10px;
	
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width:600px) {
  .column {
    width: 100%;
  }
}


