@font-face {
    font-family: Montserrat;
    src: url("../fonts/Montserrat/Montserrat-Light.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: MontserratBold;
    src: url("../fonts/Montserrat/Montserrat-Bold.ttf");
}

* {
    box-sizing: border-box;
    margin:0;
    padding:0;
    font-family: Montserrat;
    color: #eee;
}

body {
    background-color: #161E22;
}

h1 {
    text-align: center;
    padding: 50px 0;
    color: rgb(105, 113, 133);
}

/* Main Container */
#container {
    display: flex;
    flex-direction: column;
    height: 500px;
    justify-content: start;
    align-items: center;
    text-align: center;
    font-size: 1.2rem;
}

#container .open {
    color: rgb(58, 226, 114);
}

#container .closed {
    color: red;
}

#container .current-time {
    color: orange;
    margin-bottom: 20px;
}

#container #openStatus {
    margin-top: 40px;
    margin-bottom: 20px;
}

.time-title, .time-el {
    color: orange;
}

.time-title {
    width: 100px;
}

.time-el {
    display: inline-block;
    min-width: 80px;
    text-align: center;
    padding: 0px 7px;
}

.times {
    line-height: 1.6rem;
    padding: 3px 7px;
}

.highlight {
    background-color: rgb(11, 64, 85);
    border-radius: 3px;
    color:rgb(58, 226, 114);
}

hr {
    border: none;
    border-top: 1px dotted #616875;
    width : 80%;
    margin: 30px 0;
}

.description {
    width: 80%;
    background-color:rgba(66, 67, 73, 0.548);
    padding: 20px;
    border-radius: 7px;
}

.description p {
    line-height: 1.6rem;
    font-size: 0.9rem;
    margin: 20px 0;
}