body {
    background-color: #fff;
    color: #000;
    width: 40%;
    margin: auto;
    margin-top: 5%;
    font-family: helvetica;
    font-size: 13px;
    text-transform: lowercase;
}
 
main {
    display: flex;
}

h1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
}
h4 {
    font-size: 11px;
}

h3 {
    font-size: 13px;
    font-weight: bold;
    color: blue;
}

nav h3 {
    margin: 1px 1px;
}

nav {
    width: 20%;
    border-left: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
    background-color: #f4f4f4;
    text-align: center;
    padding: 10px 10px;
}

header {
    background-color: #EEEEEE;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
}


article {
    width: 50%;
    margin-left: 2%;
    margin-right: 2%;
}

aside {
    width: 20%;
    border-left: 1px solid #CCCCCC;
    border-right: 1px solid #CCCCCC;
    background-color: #f4f4f4;
    text-align: center;
    font-weight: 400;
}

footer {
    width: 100%;
    height: 3%;
    background-color: #EEEEEE;
    bottom: 0;
    left: 0;
    position: fixed;
    text-align: center;
    border-top: 1px solid #CCCCCC;
}

nav h1 {
    color: #551A8B;
    font-size: 31px;
    font-weight: 500;
}

header h1 {
    display: inline;
    color: #0000ee;
    font-weight: 400;
}

aside h4 {
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
    margin: 4px 4px;
    padding: 2px 2px;
}

.location  {
    background-color: #fff;
}

a {
    color: #0000ee;
    text-decoration: none;
}

a:visted {
    color: #551A8B;
}

a:hover {
    background-color: #EEEEEE;
    color:#551A8B;
}

#step-container {
   display: flex;
   overflow: scroll;
   overflow-y: hidden;
   
}
#step {
    border: 1px solid #CCCCCC;
    padding: 5px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 5px;
    width: 100%;
    scroll-behavior: smooth;
    
}

#step img {
    display: inline-block;
    scroll-margin-inline-start: 100px;
}
#step img {
    flex: 1 1 150px;
    height: 150px;
    object-fit: contain;

}

#step h1 {
    color: #000;
    font-weight: 700;

}

ul {
    list-style-type: none;
    text-align: center;
    margin-left: 0;
    padding-left: 0;
}

li {
    margin: 8px 8px;
}

/** CALENDER **/
.calendar {
    width: 300px;
    font-family: Arial;
    margin: 0 auto;
}

.month {
    text-align: center;
    margin-bottom: 5px;
}

.month h3 {
    margin-top: 10px;
}
.month h3:hover {
    text-decoration: underline;
    color:#551A8B;
}

.weekdays, .days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}

.weekdays div {
    padding: 2px 0;
    background-color: #ccc;
}

.days div {
    padding: 2px 0;
    background-color: #fff;
    border: solid 1px #ccc;
}

.days a {
    text-decoration: none;
    color: blue;
    display: block'
}

.days a:hover {
    background-color: #eee;
}

/** SEARCH BAR **/

.search {
    display: flex;
    align-items: center;
    border: 1px solid #999;
    width: 600px;
    max-width: 100%;
    height: 32px;
    position: relative;
}

.search input[type="text"] {
    flex: 1;
    padding: 0px 32px 0px 8px;
    font-size: 16px;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    line-height: 32px;
    outline: none;

}

 .icon {
    position: absolute;
    right: 8px;
    top: 0;
    display: inline-block;
    align-items: center;
    font-size: 16px;
    pointer-events: none;
    border: none;
    height: 100%;
}



/** RESPONSIVE THINGS **/

@media only screen and (max-width: 768px) {
    body {
        width: 90%;
    
    }
    main {
        flex-direction: column;
        
    }
    nav, aside, article {
        width: 100%;
        background-color: transparent;
        border: none;
        margin: auto 0;
        margin-bottom: 10%;
        text-align: left;

    }

    nav {
        margin: 8px 8px;
    }


    .search {
        display: none;
    }

    .calender {
        display: none
    }

    li {
        text-align: left;
    }

    aside h4, .location  {
    color: #0000ee;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    font-weight: 400;
    background-color: #EEEEEE;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;

}

}