.cover {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(174, 196, 174, 0.2);
    position: absolute;
    height: 75vh;
    width: 100vw;
    top: 50%;
    left: 50%;
    margin-top: -37.5vh;
    margin-left: -50vw;
}

.cover-title {
    color: rgb(66, 80, 73);
    font-size: 35px;
}

.cover-subtitle {
    color: rgb(74, 73, 75);
    font-size: 18px;
    margin-top: 0px;
    margin-bottom: 5px;
    font-style: italic;
}

.cover-lab,
.cover-description {
    color: rgb(74, 73, 75);
    margin-top: 15px;
    font-size: 15px;
}

.cover-description {
    width: 80vw;
    max-width: 1200px;
}

/* button styles */

.hide {
    background-color: transparent;
    margin-top: 20px;
    border: 0;
    color: rgb(74, 73, 75);
}

.show {
    background-color: transparent;
    border: 0;
    color: rgb(74, 73, 75);
}

.go-text {
    margin-top: 0;
}

.hide:hover,
.show:hover {
    cursor: pointer;
}

.hide:hover .go-text,
.show:hover .back-text {
    color: brown;
}

.hide:hover svg path,
.show:hover svg path {
    stroke: brown;
}

/* dialog styles */
.start-box {
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: center; */
    /* justify-content: center; */
    z-index: 9999;
    max-width: 800px;
    max-height: 600px;
    width: 70vw;
    height: 60vh;
    padding: 2em;
    border-color: rgb(66, 80, 73);
    background-color: rgba(244, 248, 246, 0.9);
    border-width: 1px;
    box-shadow: 16px 16px 8px 1px rgba(183, 191, 199, 0.6);
    border-radius: 15px;
    top: 50%;
    bottom: 50%;
}

.start-box-OK {
    bottom: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    cursor: pointer;
}

.dialog-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    overflow: auto;
}