body {
    text-align: center;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    background-color: black;
    color: white;
}
nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.2);
}

nav a{
    font-size: 1.5rem;
    text-decoration: none;
    color: white;
    padding: 20px 0;
    margin: 20px 30px;
    flex: 1;
    transition: 0.3s ease;
}

nav a:hover{
    background-color: rgba(100, 150, 200, 0.5);
}

.character-container {
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 16px;
}
.character {
    border-radius: 8px;
    width: 200px;
    text-align: center;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s ease;
}
.character:hover {
    transform: translateY(-3px);
}
.character img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.location-container {
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 16px;
}
.location {
    border-radius: 8px;
    width: 200px;
    text-align: center;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s ease;
}
.location:hover {
    transform: translateY(-3px);
}
.location img {
    width: 50px;
    height: 50px;
    margin: 0 20px;
    border-radius: 50%;
}

.episode-container {
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 16px;
}
.episode {
    border-radius: 8px;
    width: 200px;
    text-align: center;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.2);
    transition: 0.3s ease;
}
.episode:hover {
    transform: translateY(-3px);
}
.episode img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

#selection {
    font-size: 1.5rem;
    display: inline-block;
}

select {
    margin: 30px;
    border-radius: 10px;
    transform: scale(1.5);
}