
*{
    margin: 0;
}

body{
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 18px;
    font-style: normal;
    color: gold;
    background-image: url(../images/background.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}



#logo{
    display: flex;
    justify-content: center;
}

#logo img{
    margin-top: 40px;
    width: 300px;
}

h2 {
    margin: 40px;
    text-align: center;
    font-weight: 500;
    font-style: bold;
    font-size: 36px;
}

#characters {
    padding: 60px;}

#generate {
    cursor: pointer;
    display: block;
    margin: 40px auto;
    padding: 20px;
    border: 5px solid gold;
    border-radius: 10px;
    background-color: #171717;
    color: gold;
    font-family: "Orbitron", sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    height: 150px;
}

#generate:hover {
    transform: scale(1.05);
}
    
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin: 40px;
}

.card {
  background: #171717;
  border: 5px solid gold;
  color: white;
  padding: 20px;
  border-radius: 10px;
}

.card:hover {
  transform: scale(1.05);
}

.card h3 {
  margin-bottom: 10px;
  color: gold;
}

footer{
}
