body {
    display: flex;
    flex-direction: column;
    margin: 0;
    min-height: 100%;
    line-height: 1.2;
    background-color: #9ef0f859;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2%;
    background-color: rgb(80, 2, 80);
    color: #85d1d7;
}

h1 {
    font-size: 225%;
}

header div img {
    margin-right: 500px;
    width: 100px;
    height: 100px;
    border-radius: 17%;
}

h2 {
    margin-left: 160px;
    padding-right: 12px;
    border-right: 4px solid rgb(177, 131, 221);
    
    align-content: flex-end;
}

nav ul {
    display: flex;
    justify-content: space-around;
    min-width: 300px;
    font-size: 125%;
}

nav a {
    color: #d76699;
    font-weight: bold;
}

section {
    display: flex;
    flex-direction: row;
    padding: 50px;
}

p {
    display: flex;
    align-items: center;
    font-size: 125%;
    margin: 10px;
    padding: 18px;
    padding-right: 300px;
}

section div img {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 12px;
}

section div img:hover {
    box-shadow: 0px 0px 15px rgb(177, 131, 221);
    width: 360px;
    height: 360px;
}

.cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 10px;
}

.container {
    position: relative;
    padding: 10px;
}

.text-block {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background-color: #d76699;
    color: #fff;
    padding-left: 20px;
    padding-right: 20px;
}

#prework-study-guide {
   width: 350px;
   height: 350px; 
}

#prework-study-guide:hover {
    width: 360px;
    height: 360px;
}

#plant-protector {
    width: 350px;
    height: 350px;
}

#plant-protector:hover {
    width: 360px;
    height: 360px;
}

#employee-management {
    width: 350px;
    height: 350px;
}

#employee-management:hover {
    width: 360px;
    height: 360px;
}

.contact-me ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    min-width: 50%;
    font-size: 125%;
}

footer {
    display: flex;
    justify-content: center;
    padding: 2%;
    color: purple;
    font-size: 125%;
    font-weight: bold;
}

@media screen and (max-width: 745px) {
    header {
        flex-direction: column;
    }
    header div img {
        margin: 0%;
    }
    nav ul {
        justify-content: space-between;
    }
    .contact-me ul {
        flex-direction: column;
    }
}