* {
    font-size: 100%;
    margin: 0;
    padding: 0;
}

.welcome-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: var(--colors-background);
}

.show-content {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.welcome-title {
    margin: 0 0 8px 0;
    width: 100%;
    text-align: center;
}

.welcome-subtitle {
    margin: 0 0 30px 0;
    width: 100%;
    text-align: center;
    font-family: jakarta-medium;
}

.show-content p {
    margin-bottom: 24px;
    font-size: 18px;
    text-align: justify;
}

.page-buttons {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}