section.main {
    position: relative;
    z-index: 1;
    
    width: 100%;
    height: 100dvh;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    padding: 50px;
    text-align: center;

    background: #000000;

}   
section.main .bg  {
    position: absolute;
    z-index: -1;

    top: 0;
    left: 0;
    
    width: 100%;
    height: 100%;

    opacity: 0;
    background: #000000;

    background: linear-gradient(-300deg, transparent 0%, transparent 70%, #0088CC 100%);

    transition: 1s 1s ease-out;
    overflow: hidden;

}   section.main.init .bg {
    opacity: 1;

}   section.main h1 {
    font-size: 40px;
    font-weight: bold;

}   section.main p {
    font-size: 12px;

}

/* About */
section.about {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    align-items: flex-start;

    padding-bottom: 100px;

}

/* Stack */
section.stack {
    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    align-items: flex-start;

    background: #111111;
    gap: 15px;
    
}

@media (max-width: 860px) {
    section.stack .cards .card {
        max-width: 100px;
    }
}

/* Projects */
section.projects {
    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    align-items: flex-start;

    background: #000;
    gap: 25px;
    
}   section.projects .placeholder {
    position: relative;
    z-index: 1;

    width: 100%;
    height: auto;

    background: #222222;
    border-radius: 5px;

    padding: 30px 20px;

}   section.projects .placeholder::before {
    content: 'UNDER CONSTRUCTION 🛠️';
    position: absolute;
    z-index: 2;

    text-transform: uppercase;
    font-weight: bold;

    top: 0;
    right: 0;

    font-size: 12px;
    color: #000000;

    background: orange;
    padding: 5px;

    border-radius: 2px;
    transform: translateX(-10px) translateY(-50%);

}   section.projects .placeholder .teaser h3 {
    font-size: 25px;
    font-weight: bold;
}

section.about .content {
    display: flex;
    flex-direction: column;

    justify-content: flex-start;
    align-items: flex-start;

    gap: 15px;
}

@media (max-width: 500px) {
    section.projects .placeholder .teaser h3 {
        font-size: 18px;
    }
}