/** Section with tutorials for all categories (general, lobby, survival, skyblock) **/
.tutorials .container {
    width: 80%;
    margin: auto;
}
.tutorials .category {
    color: #4287F5;
    text-align: center;
    border-bottom: 3px solid #4287F5;
    width: 80%;
    margin: 40px auto 40px auto;
}
.tutorials ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0;
    padding: 0;
}
.tutorials ul li {
    word-break: break-word;
    list-style: none;
    background: #FFF;
    box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
    width: 40%;
    color: #FFF;
    text-align: center;
}
.tutorials ul li h3 {
    font-size: 32px;
}
.tutorials ul li p {
    padding: 15px;
    text-align: left;
    color: #000;
}
.tutorials ul li p:first-of-type {
    border-top: 1px solid #737373;
    border-bottom: 1px solid #737373;
}
.tutorials ul li a {
    text-decoration: none;
    color: #000;
}
.tutorials .link:hover a {
    color: #E8491D;
}
.tutorials ul li h4 {
    text-align: center;
    padding: 20px 0 20px 0;
    margin-top: 0;
    margin-bottom: 0;
    background-color: #3292E7;
    border-top: #B0B6B2 2px solid;
}
.tutorials ul li h4:hover {
    border: 2px solid black;
}

@media(max-width: 768px) {
	.tutorials .category {
		width: 95%;
	}
	.tutorials ul li {
		width: 85%;
	}
}7