body {
    font-family: "Alagard", "ft88regular";
    background-color: black;
    color: white;
    cursor: url("../cursor/hand.cur"), auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.center-container {
    width: 70%;
    text-align: center;
    padding: 5%;
}

.project-container {
    border: 1px solid white;
    box-shadow: 0px 0px 2px 1px rgba(255, 255, 255, 0.75);
}

h1 {
    font-size: 5vw;
    font-weight: bold;
    /*     text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.6);
 */
}

.redsky-gate {
    position: absolute;
    height: 100%;
    width: 100%;
    color: red;
    display: none;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 12vw;
    transform: scaleY(5) scaleX(-1);
}

.project {
    padding-top: 2%;
    padding-bottom: 2%;
    padding-left: 1.5%;
    padding-right: 1.5%;
    text-align: justify;
    user-select: none;
}

.project-title {
    display: flex;
    font-size: 3vw;
    font-weight: bold;
}

.project-description {
    font-size: 1vw;
    text-align: justify;
}

@media (max-width: 768px) {
    h1 {
        font-size: 15vw;
    }
    .center-container {
        width: 100%;
    }
    .project-title {
        font-size: 7vw;
    }
    .project-description {
        font-size: 2.9vw;
    }
    .project {
        padding-top: 2%;
        padding-bottom: 2%;
        padding-left: 1%;
        padding-right: 1%;
    }
}
