html {
    font-size: 10px;
    width: 100%;
    height: 100%;
    background-color: #181818;
}
body {
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 115vh;
        }
.container {
            display: grid;
            padding: 100px;
            grid-template-columns: repeat(12, 1fr);
            width: 75%;
        }
.title {
            grid-column-start: 3/span 6;
            text-align: left;
            font-size: 10rem;
            margin-top: 25%;
        }
.great-vibes-regular {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
}


h1 {
    font-family: "Great Vibes", cursive;
    color: darkorange;
    font-size: 12rem;
    margin: 0;
    padding: 0;
}
h2 {
    margin-top: 3%;
    margin-bottom: 3%;
    font-size: 3rem;
}
h3 {
    margin-top: 3%;
    margin-bottom: 3%;
    font-size: 2.5rem;
}
.dropdown-container {
    grid-column: 6/span 6;
    display: flex;
    justify-content: center;
    margin-top: 0;
    align-items: center;
    font-size: 3rem;

}
button {
    position: center;
    height: auto;
    margin-right: 40%;
    padding: 10px 20px;
    font-size: 25px;
    background-color: darkorange;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}
button:hover {
    background-color: #be5405;
}
.refresh-btn {
    font-size: 25px;
    margin: 0;
    padding: 0;
    background-color: #181818;
    width: 25px;
    height: 25px;
}

.refresh-btn:hover {
    background-color: #181818;
}
img {
    width: 400px;
    border-radius: 10px;
}

ul, li {
    padding: 0;
    margin: 0;
    display: inline;
    list-style: none;
    font-size: 2rem;
}
li:after {
  content: ", ";
}
li:last-child:after {
    content: ".";
}
