*{
    padding: 0;
    margin: 0;    
}

body {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    background-color: rgb(48, 37, 37);
    color: white;
}

a {
    text-decoration: none;
}

h1 {
    text-align: center;
}

nav {
    height: 70px;
    margin: 25px auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgb(100, 4, 4);
    border-radius: 10px;
}

nav a button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 100px;
    margin: 0 10px;
    border: 2px solid black;
    border-radius: 20px; 
    background-color: white;
    font-weight: 700;
    cursor: pointer;
}

nav a button:hover {
    background-color: black;
    color: white;
    border: 2px solid white;
}

#favorites-container {
    padding: 3rem 1rem 1rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.superhero-card {
    height: 320px;
    width: 300px;
    margin: 10px;
    border: 2px solid black;
    border-radius: 20px;
    background-color: rgb(100, 4, 4);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.superhero-card:hover {
    box-shadow: 0 0 0.5rem 0.5rem rgb(2, 2, 50);
}

.superhero-photo {
    height: 250px;
    width: 270px;
    border: 2px solid white;
    border-radius: 20px;
    cursor: pointer;
}

.superhero-photo img {
    width:100%;
    height:100%;
    object-fit: inherit;
    border-radius: 20px;
}

.superhero-name {
    margin: 0 10px;
}

.bottom {
    padding: 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border: 2px solid white;
    background-color: black;
    border-radius: 20px;
}

.fav-icon {
    margin: 0 10px;
    cursor: pointer;
}

.liked {
    color: rgb(213, 42, 42);
}