body {
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color:aliceblue;
    padding: 1em;
    background-size: cover;
background-color: #0b0b0c;
background-repeat: no-repeat;
background-image:  repeating-radial-gradient( circle at 0 0, transparent 0, #e5e5f739 10px ), repeating-linear-gradient( #8944f755, #44f7ac );
}

a {
    color: #ac7ff3;
    text-decoration: none;
}

header {
    background-color: #0a0a0a79;
    color: rgb(205, 205, 215);
    padding: 1em;
    border-radius: 1em;
    margin-bottom: 1em;
}

.maingrid {
display: flex;
}



.left {

    border: .5em;
    border-color:#44f7ac ;
    border-radius: 1em;
    border-style: solid;
    padding: 1em;
    padding-top: 0%;

    background-color: #0a0a0a79;
}


.right {
    padding: 1em;
    background-color: #0a0a0a79;
border-radius: 1em;
margin-right: 1em;
}

.right img {
    width: 100%;
    border-radius: 1em;
}

span {
    font-style: italic;
    color: #44f7ac;
}

.holder {
display: flex;
justify-content: space-between;
}

.child1, .child2, .child3, .child4 {
    border-width: .15em;
    border-radius: 1em;
    border-color: #0b0b0c;
    background-color: #0a0a0a79;
    color: rgb(205, 205, 215);
    border-style: solid;
    padding: 1em;
    width: 20%;
}

@media only screen and (max-width: 600px) {
    .maingrid, .holder {
        flex-direction: column;
    }
    .child1, .child2, .child3, .child4 {
        width: 90%;
    }
    }