html {
    scroll-behavior: smooth;
    font-family: 'Geist Mono';
}

body {
    background-color: black;
}

h2 {
    color: white;
    font-size: 15px;
}

h1 {
    font-size: 30px;
    color: teal;
    background-color: rgb(0, 25, 25);
    padding: 20px;
    border-radius: 5px;
    max-width: 500px;
}

#content a {
    color: palevioletred;
}

.container {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
}

.card, .card:hover {
    transition: 300ms;
}
.card {
    background-color: rgb(82, 82, 82);
    padding: 5px;
    margin: 10px;
    text-align: center;
    vertical-align: middle;
    border-radius: 10px;
    transform: scale(1.00);
}
.card:hover {
    transform: scale(1.05);
    background-color: rgb(67, 34, 99);
}


#backBtn {
    position: fixed;
    right: 0px;
    bottom: 0px;
    background-color: teal;
    font-size: 20px;
    padding: 10px;
    transition: 1s;
}
#backBtn a {
    color: white;
}

#backBtn:hover {
    background-color: rgb(0, 25, 25);
    transition: 1s;
}
#backBtn a:hover {
    color: teal;
}