/*@import url(https://fonts.googleapis.com/css?family=Raleway);*/
*{
	padding: 0;
	margin: 0;
	border: 0;
}
*,*:before,*:after{
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,:active{outline: none;}
a:focus,a:active{outline: none;}

nav,footer,header,aside{display: block;}

html,body{
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
input,button,textarea{font-family:inherit;}

input::-ms-clear{display: none;}
button{cursor: pointer;}
button::-moz-focus-inner {padding:0;border:0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
img{vertical-align: top;}


html, body {
  background-color: #242432;
}


* {
  font-family: 'Raleway', sans-serif;
}

.top-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #121218;
  color: #FFF;
  height: 90px;
  padding: 1em;
}



.wrapper {
    margin-bottom: 20px;
}

.flex-container{
    margin: auto;
    margin-top: 10px;
    display: flex;
    background: #121218;
    flex-direction: column;
    width: 95%;
    border-radius: 10px;
    max-width: 1900px;
    
}

.flex-block {
    height: 100%;
}

.flex-block:nth-child(2) {
    min-height:100px;
}

.flex-block:nth-child(2) span{
    font-size: 30px;
    padding: 20px;
    border: 4px dashed #ED4013;
    font-weight: 800;
}

.flex-block:nth-child(3) {
    min-height:100px;
}

.flex-item{
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    text-transform: uppercase;
    color: #fff;
}


.flex-item a{
    text-decoration: none;
    background: linear-gradient(180deg,#ffd600,#ffba00);
    color: aliceblue;
    padding: 25px 25px;
    font-size: 25px;
    border-radius: 10px;
    font-weight: 800;
}

.container{
    margin: auto;
    max-width: 1980px;
    padding-bottom: 10px;   
}


.content {
    max-width: 93%;
    margin: auto;
    line-height: 20px;
    font-size: 18px;
    color: #fff;
    box-shadow: 0px 0px 1px 2px #5d35f5; 
    padding: 10px;
    list-style-position:inside; 
}

p {
    margin-top: 0.5em; /* Отступ сверху */
    margin-bottom: 1em;   
}

.content h2 {
    text-transform: uppercase;
    text-align: center;
    line-height: 30px;
}

table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    border: 3px solid #5d35f5;
    margin-bottom: 10px;
}

th, td {
   border: 1px solid #5d35f5;
   padding: 15px;
} 

tr {
    word-wrap: break-word;
}



@media screen and (max-width: 380px){
    .flex-item h1{
        font-size: 30px;
    }
    .flex-item a{
        padding: 30px 15px;
        font-size: 15px;
    }
    .content {
        padding: 5px;
    }

    .content h2 {
        font-size: 20px;
    }
    
}


