/*
    Name: Omar Ibrahim
    TA: Derek Chiu
    05.14.18
    Styling for CSE 100 level course info page
*/

@import url('https://fonts.googleapis.com/css?family=Libre+Barcode+39|Oswald');

* {
    font-family: 'Oswald';    
    /* Switch to this font for a real fun reading experience */
    /* font-fmaily: 'Libre Barcode 39' */
}

main {
    display: flex;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

header {
    width: 100%;
    background-color: black;
    color: white;
}

h1 {
    padding: 10px;
}

.hidden {
    display: none;
}

#courses {
    flex-basis: 50%;
}

#course-info {
    flex-basis: 50%;
    background-color: lavender;
    padding: 10px;
}