@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap');

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: #393939;
  color: #fff;
  font-family: "Fira Code", monospace;
}
a{
    color: #fff;
}
.menu{
    display: flex;
    background-color: #000;
    top: 0;
    height: 5%;
    width: 100%;
    justify-content: start;
    position: absolute;
    z-index: 10;
}
.menu ul{
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 40%;
}
.menu a{
    text-decoration: none;
}
.main{
    padding: 5%;
    position: relative;
}
.metime{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    margin-left: 10%;
    font-size: 150%;
    font-weight: bold;
}
.container{
    background-color: #000;
    width: 80%;
    margin-left: 10%;
    margin-top: 30px;
    border-radius: 8px;
    text-align: center;
    padding: 20px;
}
.scroller{
    height: 40%;
    display: flex;
    gap: 30px;
    overflow-x:visible;
}
.card{
    background-color: #000;
    height: 40%;
    width: 80%;
    padding: 20px;
    border-radius: 5px;
}