	#home {
	    display: flex;
	    flex-direction: column;
	    gap: 20px;
	    padding-bottom: 40px;
	}

	#home p {
	    text-align: justify;
	    hyphens: auto;
	    word-break: break-word;
	    margin-bottom: 10px;
	}

	#home img {
	    width: 100%;
	    border-radius: 3px;
	}

	.coverTitle {
	    margin-top: 20px;
	    color: #0e91b8;
	    padding: 0;
	    border: 0;
	    font-family: "Roboto Condensed", serif;
	    text-align: center;
	    font-weight: 800;
	    font-size: 3.2rem;
        line-height: 3.3rem;
	}

	.summaryTitle {
	    color: #0e91b8;
	    font-weight: 700;
	    font-size: 1.4rem;
	    line-height: 1.5rem;
	    font-family: "Roboto Condensed", serif;
        margin-top: 10px;
	}

	.summaryText {
	    font-size: .8rem;
	    line-height: 1.1rem;
	}

	.epCol {
	    display: flex;
	    flex-direction: column;
	    gap: 8px;
	}

	.epRow {
	    display: flex;
	    gap: 12px;
	}

	.left {
	    flex: 1;
	}

	.right {
	    width: 200px;
	    padding-top: 20px;
	}

	.separator {
	    width: 100%;
	    height: 1px;
	    background-color: rgb(219, 219, 219);
	}

	.verticalSeparartor {
	    height: 100%;
	    width: 1px;
	    background-color: rgb(219, 219, 219);
	}


	@media(max-width: 780px) {
	    .epRow {
	        flex-direction: column;
	    }

	    .coverTitle {
	        font-size: 2rem;
	        line-height: 2rem;
	    }

	    .summaryTitle {
	        font-size: 1.1rem;
	    }

	    .right {
	        width: 100%;
	    }
	}