#wholepage {
    display: block;
    width: 100%;
    height: calc(100vh - 138px);
    /*position: fixed;*/
    overflow: hidden;
}

section, .section {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: translate(0, 0);
    transition: transform 0.4s ease-out;
    margin: 0; padding: 0;

}

.page {
    flex: 1 0 100%;
    /*display: flex;*/
    /*flex-direction: column;*/
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    transform: translate(0, 0);
    transition: transform 0.4s ease-out;
}

.sectionButtonContainer {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 50%;
    right: 3vw;
    color: rgb(30, 30, 30);
    -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);

}

.sectionButtonContainer label, .page_selection label {
    display: inline-flex;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(210, 54, 76, 0.8);
    transition: transform 0.2s;
    margin: 12px 12px;
    padding: 0px;
    box-shadow: 0px 0px 16px rgba(210, 54, 76, 0.8);
    cursor: pointer;
}

.sectionButtonContainer label::after, .page_selection label::after {
    content: '';
    display: inline-flex;
    position: relative;
    top: -10px;
    left: -10px;
    padding: 12px;
}

.sectionButtonContainer input[type=radio]:checked + label::after, .page_selection input[type=radio]:checked + label::after {
    display: none;
}

.sectionButtonContainer input[type=radio]:checked + label, .page_selection input[type=radio]:checked + label  {
    transform: scale(2.2);
    transition: transform 0.2s;
}

.page_selection {
    position: absolute;
    display: flex;
    flex-direction: row;
    bottom: 2vh;
    left: 40%;
    color: rgb(30, 30, 30);
    -webkit-tap-highlight-color:  rgba(255, 255, 255, 0);
    z-index: 999999;

}

.desc-text{
    position: relative;top: 33%;right: 30px;padding-right: 20%;padding-left: 20%;
}

.page-image-show img {
    position: absolute;bottom: 0;max-height: 100%;width:90%;right: 0;
}

.h1-text{
    font-size: 2rem;
}

.p-text{
    font-size: 1.6rem;
}
