/* define the styles */

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: paleturquoise;
    transition: 1s;
}

.container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.main-content {
    max-width: 500px;
    padding: 20px;

}

.sidebar {
    font-family: 'Courier New', Courier, monospace;
    padding: 20px;
    background-color: black;
    color: aliceblue;
    border-radius: 5px;
    max-width: 500px;

}

.info {
    padding-bottom: 30px;
    font-size: small;

}

.info:hover {
    font-size: medium;
    transition: 1s;
    color: yellow;
}

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

h1 {
    color: cornflowerblue;
}

section {
    padding-bottom: 1em;
}

img {
    width: 30px;
    margin-right: 10px;
    background-color: black;
}

img:hover {
    background-color: transparent;
    transition: all .5s;
}

.profile {
    border-radius: 50%;
    width: 20px;
}

.profile-explanation {
    display: none;
}

.profile:hover+.profile-explanation {
    display: block;
    color: red;
}

.winning-image {
    width: 50px;
}

.winners {
    font-size: xx-large;
    color: hotpink;
}

.winners:hover {
    color: white;
    transition: all .5s;
}