a {
	color: blue;
}

.teams {
    display: flex;
    flex-wrap: wrap; /* Allows team containers to stack vertically on smaller screens */
    font-size: 13px;
}

.teamLeft, .teamRight {
    flex-basis: 50%; /* Full width for each team container */
    vertical-align: top;
    margin-bottom: 20px; /* Space between teams */
}

.profession, .players {
    display: inline-block; /* Align horizontally */
    vertical-align: top;
    width: 48%; /* Adjust the width as needed */	
}

@media screen and (max-width: 800px) {
    .teams {
        flex-direction: column; /* Stack team containers vertically */
    }
}


.back-to-home #logo {
background: transparent url("../img/camera.svg") no-repeat scroll center top / cover;
border-radius: 0.2em;
border: none;
margin: auto;
margin-top: 1em;
height: 150px;
width: 150px;
color: transparent;
font-size: 40px;
}