@import url(reset.css);
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --ff: "DM Sans", sans-serif;
    --copy: #fff;
    --bg: #1a1724;
    --blue: 64, 95, 248;
    --pink: 248, 64, 193;
    --purple: 150, 64, 248;
    --orange: 255, 152, 92;
    --green: 61, 174, 65;
}

h2 {
    font-weight: 300;
}

p {
    font-size: 1.5rem;
}
body {
    font-family: var(--ff);
    background-image: url(/assets/wallpaper.jpg); 
    color: var(--copy);
    height: 100dvh;
    align-content: center;
}

.content {
    position: absolute;
    text-align: center;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.course-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.no-class {
    font-size: 1rem;
}

.course {
    font-weight: 800;
    width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-inline: 2rem;
    padding: 0.8rem;
    border-radius: 1rem;
    -webkit-box-shadow: 0px 0px 10px -1px rgba(0,0,0,0.8); 
    box-shadow: 0px 0px 10px -1px rgba(0,0,0,0.8);
}

.room-num {
    font-weight: 300;
    font-size: 1rem;
    text-align: left;
}

.duration {
    font-weight: 300;
    font-size: 1rem;
    text-align: right;
}

.blue {
    background-color: rgb(var(--blue));
}
.pink {
    background-color: rgb(var(--pink));
}
.purple {
    background-color: rgb(var(--purple));
}
.orange {
    background-color: rgb(var(--orange));
}
.green {
    background-color: rgb(var(--green));
}