@font-face {
	font-family: "BebasNeue";
	src: url("/tiraubuzzer/font/BebasNeue-Regular.ttf");
}

@media(max-width:590px){
	.title{
		font-size:16px;
	}
	.title2{
		font-size:16px;
	}
	.title3{
		font-size:11px;
	}
	.paragraphIntro{
		font-size:14px
	}
	.paragraph{
		font-size:11px
	}
}

@media(min-width:591px){
	.title{
		font-size:20px;
	}
	.title2{
		font-size:20px;
	}
	.title3{
		font-size:15px;
	}
	.paragraphIntro{
		font-size:18px
	}
	.paragraph{
		font-size:15px
	}
}

html {
	height:100%;	
}

body{
	height:100%;
	font-family:"Roboto", sans-serif;
	cursor:default;
	background-color: #edeef0;
	display: flex;
  	flex-direction: column;
  	min-height: 100vh;
}

header{
	position: fixed;
	width: 100%;
	z-index: 1000;
}

main{
	width: 100%;
	flex: auto;
	margin:auto;
	margin-top: 75px;
	padding-bottom:20px;
    min-width: 350px;
	max-width: 1300px;
}

.container-fluid{
	padding-left: 8px;
	padding-right: 8px;
}

.header{
	display: flex;
	width:100%;
    background-color:#12418B;
    cursor:default;
	box-shadow: 0 5px 5px -5px #333;
	min-width:350px;
}

.logo_header {
	display:flex;
	text-decoration:none;
	width:100%;
	height:60px;
	margin-left: 20px;
    align-items: center;
}

.quitHome {
	padding: 6px 10px 6px 10px;
    border-radius: 26px;
}

.homeReturn {
	width:110px;
}

.quitHome:hover {
	background-color:#0c2d5f;
	border-color:#0c2d5f;
	transition: 0.3s;
}

.container_title { 
	background: white;
	height: 130px;
	display: flex;
    justify-content: center;
    align-items: center;
	border-radius: 5px;
}

.container_rules { 
	display: flex;
	min-height: 800px;
	background-color: #fff;
	margin-top: 10px;
	padding: 0px 15px 0px 15px;
    border-radius: 10px;
	justify-content: center;
}

.list_rules{
	max-width: 1000px;
    padding-bottom: 30px;
    padding-top: 20px;
}

.title {
	text-align:center;
    position: relative;
	color:#212529;
	font-size: 55px;
	font-family: "BebasNeue";
}

.title2 {
	padding-top: 5px;
    padding-bottom: 5px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #12418B;
    font-weight: bold;
    border-radius: 10px;
    font-size: 20px;
}

.title3 {
	display: flex;
	padding-top:4px;
	padding-bottom:4px;
	padding-left:10px;
	margin-top:10px;
    position: relative;
    color: #909090;
    font-weight: 400;
	background:#f7f7f7;
	border-radius:10px;
	justify-content: space-between;
}

.paragraph {
	overflow: hidden;
	height: 0;
	opacity: 0;
	text-align: justify;
	padding-top:8px;
    position: relative;
	color:#313131;
	transition: height 0.5s ease, opacity 0.5s ease;
}

.show_rules {
	height: auto;
	opacity: 1;
  }

.paragraph span{
	display: block;
	padding-bottom:8px;
}

.paragraphIntro {
	text-align: justify;
    position: relative;
	color:#313131;
	font-weight:bold;
	padding:20px;
	margin-bottom:20px;
}

/*--------------------------------------------
------------------ ICONES  -------------------
--------------------------------------------*/

.button{
	background:transparent;
	border:0;
	margin-right: 15px;
}

.button:focus{
	outline:none;
}

.button img{
	width:12px;
	border-radius:50%;
}

.rotateimg270 {
	-webkit-transform:rotate(270deg);
	-moz-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	-o-transform: rotate(270deg);
	transform: rotate(270deg);
}