@charset "utf-8";

@import 'https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap';


input {
    display: none;
}

article {
    display: none;
}

.tab-title {
	font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
	color:#00adee;
	font-size:24px;
	margin:20px 0;
	text-align:left;
}

label {
    display: inline-block;
    margin: 2px 0;
    padding: 15px 30px;
    text-align: center;
    color: #555;
    font-family: 'Montserrat', sans-serif;
	font-weight:lighter;
    letter-spacing: 1px;
    background: #f4f4f4;
    font-size: 21px;
    border-radius: 5px;
}

label:hover {
    color: #fff;
    cursor: pointer;
    background: #333;
}

input:checked + label {
    color: #fff;
    background: #a30827;
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4,
#tab-a:checked ~ #content-a,
#tab-b:checked ~ #content-b,
#tab-c:checked ~ #content-c,
#tab-d:checked ~ #content-d {
    display: block;
}