h1 {
    font-family: "Tiempos Headline", seris;
}

main {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-left: 50px;
    min-width: 30%;
    max-width: 35%;
    margin: auto;
    position: relative;
}

.container .card {
	position: static;
}

.rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 10px 0;
}

.rating input[type="radio"] {
    display: none;
}

.rating label {
    font-size: 1.5em;
    color: #f0c040;
    cursor: pointer;
    margin-right: 5px;
}

.rating input[type="radio"]:checked ~ label {
    color: #ffcc00;
}

.rating label:hover,
.rating label:hover ~ label {
    color: #ffd700;
}

p {
    margin: 10px 0;
}

p strong {
    font-weight: bold;
}

p em {
    font-style: italic;
}

.parent-container {
    text-align: center; 
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

ul li a {
    color: inherit;
    text-decoration: none;
}

ul li a:hover {
    text-decoration: none;
}

select {
    padding: 8px;
    box-sizing: border-box;
    border-radius: 4px;
    background-color: #fff;
}

.rating {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.rating input[type="radio"] {
    display: none;
}

.rating label {
    font-size: 2em;
    color: gold;
    cursor: pointer;
}

.mascot-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-image: url('../img/logo.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.close {
   color: #aaa;
   float: right;
   font-size: 28px;
   font-weight: bold;
}

.close:hover,
.close:focus {
   color: black;
   text-decoration: none;
   cursor: pointer;
}

input[type="submit"] {
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

input[type="submit"]:hover {
    background-color: #45a049;
}