body {
    background-color: #08124A;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 0;
}

header {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: min-content;
}

header>h1 {
    color: #D0CCD0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
}

article>p {
    margin: 1em;
}

article {
    background-color: #2ebceb80;
    height: min-content;
    width: 70ch;
    /* Set the width to 70 characters' worth of space */
    max-width: 70vw;
    font-size: 1.25em;
    /* padding: 0.5em; */
}

.wrapperMain {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}



.desktopWindow {
    border-radius: 0.75em;
    border: 3px solid #28a3ccb6;
    position: relative;
    margin: 1em;
}

.ad-desktop {
    display: none;
    width: 20vw;
    height: min-content;
    color: #D0CCD0;
}

.ad-mobile {
    display: none;
}

p, h3, h1, h2{
    color: #D0CCD0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    margin-left: 0.6em;
}


span {
    color: #D0CCD0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
}

.desktopWindow::before {
    content: "\00A0\00A0🔴\00A0🟡\00A0🟢";
    background-color: #28a3cca8;
    left: 2px;
    width: 100%;
    border-top-left-radius: 0.5em;
    border-top-right-radius: 0.5em;
    padding-top: 0.2em;
    padding-bottom: 0.25em;
    display: flex;
    justify-content: flex-start;
    align-items: center;

    z-index: -1;
}



.desktopWindow>span {
    position: relative;
    float: right;
    padding-right: 1.5em;
    top: -1.6em;
}

@media (orientation: portrait) {

    .desktopWindow>span {
        width: 50%;
        padding-right: 0em;
        top: -3.2em;
        left: 35px;
    }

    .details.desktopWindow::before {
        height: 3em;
    }


    .wrapperMain {
        flex-direction: column;
    }

    .ad-desktop {
        display: none;
    }

    .ad-mobile {
        display: none;
        position: fixed;
        bottom: 0;
        height: 20em;
        right: 0;
        width: 100vw !important;
        margin: 0;
        border: 0px;
        border-radius: 0;
        background-color: rgb(0, 0, 0) !important;
        z-index: 1;
    }

    .ad-mobile::before {
        content: "";
        background-color: transparent;
    }

    .menu {
        width: 70vw !important;
    }

}

@media (550px > width) {
    .details.desktopWindow::before {
        height: 3em;
    }


    }

}

@media (430px > width) {
    .details.desktopWindow::before {
        height: 3em;
    }

    .desktopWindow>span {
        width: 40%;
        position: relative;
        left: 0px;
        top: -1.5em
    }
}