/* font family */
.font-italiana {
    font-family: "Italiana", serif;
}

.font-inria {
  font-family: "Inria Serif", serif;
}

.font-instrument {
    font-family: "Instrument Serif", serif;
}

/* flex */
.disp-flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.justify-center {
    justify-content: center;
}

.justify-space-even{
    justify-content: space-evenly;
}

.justify-space-around{
    justify-content: space-around;
}

.justify-space-between{
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

/* width */
.width-100 {
    width: 100vw;
}

.width-50 {
    width: 50%;
}


/* margin */
.margin-center {
    margin: 0 auto;
}

.margin {
    margin: 5rem;
}

/* positions */
.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

/* font colours */
.text-color-white {
    color: #ffff;
}

.text-color-black {
    color: black;
}

/* font size */
.header-1 {
    font-size: 2rem;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.paragraph-1 {
    font-size: 1.1rem;
    line-height: 1.8rem;
    text-align: left;
    max-width: 1400px;
}


/* text align */
.text-align-center {
    text-align: center;
}

.text-align-left {
    text-align: left;
}

.text-align-right {
    text-align: right;
}

.header-line {
    height: 1px;
    width: 30vw;
    background-color: #5C5B5C;
}

.title-font {
    font-size: 2.5rem;
    font-weight: 300;
}

.other-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.other-container.show {
    max-height: 100px; /* enough space for the textbox */
}


@media (max-width: 768px) {
    .flex-row {
        flex-direction: column;
    }
    
    .width-50 {
        width: 100%;
    }

    .flex-1, .flex-2 {
        width: 100% !important;
        margin: 0;
    }
}