.cards {
padding: 12px;
margin: 10px;
/* height: 200px; */
width: 242px;
height: 208px;
display: inline-block;
border-radius: 20%;
word-wrap: break-word;
min-height: 98px;
/* min-width: 300px; */
}
 /*hello :)*/

.cards img {
	width: 110px;
	height: 120px;;
}
/* Set the background color to black and the text color to white */
body {
    background-image: url('./logo.png');
    background-blend-mode: overlay;
    background-size: center;
    background-repeat: no-repeat;
    background-position: center;
    background-color: rgb(43, 43, 43);
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
}

.navbar {
    background-color: rgb(43, 43, 43) !important;
	
}

.navbar-nav li {
    width: 120px;
    text-align: center;

}

.navbar-nav .nav-link {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin: 0 8px;
    position: relative;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.navbar-nav .nav-link:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover:before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.navbar-nav .nav-link:hover {
    color: #ffd700;
    z-index: 2;
    transform: scale(1.2);
}

.navbar a {
    color: white !important;
    padding: 10px 25px;
    border: 1px solid white;
    border-radius: 5px;
    margin-right: 5px;
}

.navbar a:hover {
    background-color: rgb(72, 71, 71);
    color: black;
    text-decoration: none;
}

.yt {
    transition: transform 0.2s ease-in-out;
    max-width: 100%;
    width: 150px;
    height: 100px;
    border-radius: 5px;
}

/* Style the images to zoom in on hover */
img {
    transition: transform 0.2s ease-in-out;
    max-width: 100%;
    width: 100px;
    height: 100px;
    border-radius: 5px;
}

img:hover {
    transform: scale(1.1);
}

.center {
    margin: 0 30px;
}

table {
    border-collapse: collapse;
    margin: 0 10px;
}

table.center {
    border-collapse: collapse;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    text-align: center;
}

th {
    background-color: #04AA6D;
    color: white;
    font-weight: 500;
    padding: 15px;
}

td {
    /* border: 2px solid #000000; */
    /* padding: 5px; */
}

tr:hover {
    background-color: #525252;
    opacity: 0.8;
}

.invite-pix {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    margin-bottom: 5px;
    background-color: transparent;
    transition: transform 0.2s ease-in-out;
}

.invite-pix:hover {
    transform: scale(1.1);
}

/* Style the links in the footer */
footer a {
    color: white;
    text-decoration: none;
}

footer {
    background-color: rgb(89, 89, 89);
    color: white;
    text-align: left;
    padding: 3px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}