.fullpage {
    height: 70%;
    min-height: 630px;
    display: flex;
    flex-flow: column;
    overflow: auto;
    background-color: #252837;
}

.HomePage_Content {
    height: 100%;
    min-height: 570px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.contentBox {
    height: 300px;
    width: 600px;
    border-radius: 10px;
    border:1px solid rgb(99, 95, 95);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.title {
    height: 20%;
    width: 100%;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    height: 70%;
    width: 100%;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.linksOut {
    height: 10%;
    width: 100%;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ButtonToMainpage {
    height: 30px;
    width: 140px;
    background-color: #5345B0;
    border-radius: 10px;
    border:1px solid rgb(99, 95, 95);
}

.ButtonToMainpage:Hover {
    background-color: #6757D6;
    transition: all 0.3s ease;
}

.ButtonLink {
    height: 100%;
    width: 100%;
    padding: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
}

#TextTitle {
    font-size: 40;
}

#Text {
    font-size: 20;
}