body {
    margin: 0;
    padding: 0;
    background-color: #00000000;
}

.WelcomePage {
    .Text1 {
        font-size: 50px;
        text-align: center;
        margin-top: 50px;
        color: yellow;
    }

    .Text2 {
        font-size: 35px;
        text-align: center;
        margin-top: 100px;
        text-decoration: underline;
    }

    .Text3 {
        width: 90%;
        justify-self: center;
        font-size: 30px;
        text-align: center;
        margin-top: 100px;
    }
}

.LatestNewsPage {
    .Post {
        width: 95%;
        min-height: 100px;
        left: 2.5%;
        top: 20px;
        margin: 0;
        position: absolute;

        background-color: #00000048;
        border-radius: 10px;
        overflow-wrap: break-word;

        .Title {
            margin-top: 10px;
            margin-left: 10px;
            margin-bottom: 5px;
            font-size: 30px;
        }

        .Line {
            width: 100%;
            height: 3px;
            background-color: #00000061;
        }

        p {
            font-size: 20px;
            margin-left: 10px;
            margin-right: 10px;
        }
    }
}

.AboutMePage {
    .Header {
        font-size: 40px;
        text-align: left;
        margin: 10px;
    }

    .Header2 {
        font-size: 30px;
        text-align: left;
        margin: 10px;
        margin-top: 30px;
    }

    a {
        margin-left: 10px;
        font-size: 30px;
        color: #7ae2ff;
    }
}