html{
    background-color: #67E8F9;
    color: #083344;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}


header{
    text-align: center;
}
.title{
    font-weight: 900;
    font-size: 3rem;
}

.infoContainer{
    display: flex;
    gap: 3vw;
    justify-content: center;
}

.infoItem{
    flex-grow: 1;
    font-weight: 500;
}

.infoName{
    order: 1;
}

.infoTitle{
    order: 2;
}

.infoHours{
    order: 3;
}

main{
    width: 70vw;
    margin-left: 15vw;
    padding-right: 15vw;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding-top: 1rem;
}

article {
    border-radius: 1rem;
    padding: 1rem;
    width: 100%;
    flex-grow: 1;
}

article:hover{
    background-color: #22D3EE;
}

a{
    color: inherit;
    text-decoration: inherit;
}

.tagContainer{
    display: flex;
    gap: 1rem;
}

.tagItem{
    background-color: #083344;
    color: #A5F3FC;
    border-radius: 2rem;
    padding: 0.2rem;
    padding-left: 1rem;
    padding-right: 1rem;
    font-style: italic;
}

.subtitle{
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
}

.backHover:hover{
    background-color: #164E63;
}

img{
    width: 100%;
}

p{
    width: 70vw;
}

.rationale{
    border-left: 1rem solid #06b6d4;
    z-index: 1;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.rationale-title{
    background-color: #06b6d4;
    color: white;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    z-index: 2;
    top: 0;
}

.translate{
    translate: 0 7.3rem;
    position: absolute;
}

.rationale-body{
    padding: 1rem;
}

@media screen and (max-width: 800px) {

    .infoName {
        order: 2;
        width: 100%;
    }

    .infoTitle{
        order: 1;
        width: 100%;
    }

    .infoContainer{
        flex-direction: column;
    }

    .scuff{
        display: none;
    }
}

/*
// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.montserrat-<uniquifier> {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

*/