body{
    background-color: rgba(238, 238, 238, 0.74);
}
.container {
    display: grid;
    align-items: start;
    justify-content: start;
    margin: 0px auto;
    width: fit-content;
    height: fit-content;
    grid-template-columns: repeat(8, 100px);
    grid-template-rows: repeat(8, 100px);
    gap: 20px;
    padding: 20px;
}

.social {
    grid-column: 3 / span 4;
    grid-row: 1/4;
    text-align: center;
    padding: 20px;
    padding-bottom: 90px;
    border-radius: 10px;
    color: white;
    background-color: rgb(125, 88, 226);
    font-size: 45px;
    font-weight: 800;
    font-family: DM sans;
}
.x{
    color: rgb(241, 188, 89);
}
h3{
    font-size: small;
    font-weight: 400;
}
.fast{
    font-style: italic;
}
.manage {
    grid-column: 3/5;
    grid-row: 4/7;
    padding: 30px;
    padding-top: 60px;
    border-radius: 10px;
    overflow: hidden;
    font-family: Dm sans;
    font-size: 30px;
    font-weight: 600;
    color: black;
    text-wrap: nowrap;
    background-color: white;
    line-height: 40px;
}

.maintain {
    padding: 20px;
    grid-column: 5/7;
    grid-row: 4/7;
    padding-bottom: 10px;
    border-radius: 10px;
    color: black;
    background-color: rgb(255, 199, 96);
    font-family: Dm sans;
    font-weight: 700;
    font-size: 25px;
    overflow: hidden;
}

.schedule {
    display: flex;
    flex-direction: column;
    grid-column: 7/9;
    grid-row: 1/7;
    padding: 20px;
    padding-bottom: 70px;
    border-radius: 10px;
    overflow: hidden;
    color: black;
    background-color: rgb(222, 197, 255);
    font-family: Dm sans;
    font-size: 10px;
    text-wrap: nowrap;
}
.sch{
    font-size: 30px;
    font-family: Dm sans;
    font-weight: 800;
}
h4{
    font-weight: lighter;
}
.grow {
    grid-column: 5/9;
    grid-row: 7/9;
    padding-left: 20px;
    padding-top: 30px;
    padding-bottom:20px;
    display: flex;
    flex-direction: row;
    border-radius: 10px;
    font-family: Dm sans;
    font-size: 30px;
    font-weight: 600;
    color: white;
    background-color: rgb(144, 77, 252);
}

.faster {
    grid-column: 3/5;
    grid-row: 7/9;
    padding: 10px;
    border-radius: 10px;
    font-weight: 100;
    font-size: 10px;
    font-family: Dm sans;
    text-wrap: nowrap;
    background-color: white;
}
.nos{
    font-size: 60px;
    font-weight: 700;
    font-family: Dm sans;

}
.create {
    display: flex;
    flex-direction: column;
    justify-self: center;
    grid-column: 1/3;
    grid-row: 1/5;
    padding: 30px;
    padding-top: 40px;
    padding-bottom: 160px;
    border-radius: 10px;
    background-color: antiquewhite;
    font-family: Dm sans;
    font-size: 30px;
    font-weight: bolder;
    text-align: center;
    text-wrap: nowrap;
    color:black;
}
.quick{
    font-style: italic;
    color: rgb(158, 55, 255);
}
.write {
    grid-column: 1/3;
    grid-row: 5/9;
    padding: 20px;
    padding-bottom: 75px;
    border-radius: 10px;
    background-color: rgb(250, 196, 97);
    font-family: Dm sans;
    font-size: 30px;
    font-weight: 800;
    text-wrap: nowrap;
    color: black;
}

.img1 {
    height: 100px;
    width: 150px;
    position: relative;
    left:0px;
    top: 60px;
    border-radius: 10px;
}

.img2 {
    width: 100px;
}

.img3 {
    width: 200px;
    position: relative;
    right: 10px;
    top: 30px;
}
.img4{
    width: 200px;
    position: relative;
    left: 30px;
    top: 00px;
}
.img5{
    width: 180px;
    position: relative;
    right:0px;
    top: 72px;
}
.img6{
    width: 150px;
    top: 0px;
    position: relative;
    left: 20px;
}
.img7{
    width: 180px;
    position: relative;
}
.img8{
    width: 300px;
    height: 360px;
    position: relative;
    top: 20px;
    left: 10px;
}
@media only screen and (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        margin-left: 0;
        width: 100%;
        gap: 10px;
    }
    .social,
    .manage,
    .maintain,
    .schedule,
    .grow,
    .faster,
    .create,
    .write {
        grid-column: 1 / -1;
        grid-row: auto;
        padding: 20px;
        margin-bottom: 10px;
    }
    .social {
        padding-bottom: 20px;
    }

    .manage {
        padding-top: 20px;
    }

    .maintain {
        padding-bottom: 20px;
    }

    .schedule {
        padding-bottom: 20px;
    }

    .grow {
        padding-bottom: 20px;
    }

    .create {
        padding-bottom: 20px;
    }

    .write {
        padding-bottom: 40px;
    }
}