.pages_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.page {
    position: relative;
    width: 100%;
    height: 100dvh;
    z-index: 99;
    background-color: #f5f5f5;
}

.text_container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 40vw;
}

.text_container h1{
    margin-bottom: 2vw;
    font-size: 3vw;
}

.text_container p{
    font-size: 1vw;
    font-weight: bold;
}