*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
h1{
    font-size:8vw;
    text-align: center;
    padding: 2.5vh 10% 2.5vh 10%;
}
#nav-buttons{
    display:block;
}


/* Style arrow icons */
.toggle-text {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.text-block {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease;
}

/* Show text blocks */
.text-block.show {
    max-height: 2000px;
}


#nav-buttons{
    display:block;
}