@import url('https://fonts.googleapis.com/css2?family=Roboto:ital@1&display=swap');

/*   * - обращение ко всем элементам */

/* *{
	padding: 0;
	margin: 0;
} */

body{
	background-color: #f1f1f1;
	color: #0f141e;
	font-size: 16px;
	font-family: 'Roboto', sans-serif;
}

.avatar{
	width: 300px;
	border-radius: 25px;
	box-shadow: 4px 4px 14px rgba( 0, 0, 0, 0.25);
}

.social{
	margin-bottom: 20px;
}

.info{
	display: flex;
	margin-bottom: 20px;
}


/* Это адаптив */
@media (max-width: 700px) {
	.info{
		display: block;
		text-align: center;
	}

}

.info p{
	color: #86898f;
	margin: 0;
	font-style: italic;
}

.info-text{
	margin-left: 40px;
}

.info-text h4{
	margin-bottom: 10px;
}

.container{
	/* максимальная ширина для эфкрана, но не обязательная */
	max-width: 750px;
	/* ставит все по центру */
	margin: auto; 
	padding-top: 100px;
	padding-bottom: 100px;
}

a{
	color:#0f141e;
	text-decoration: none;
}

a:hover{
	text-decoration: underline;
}

a:active{
	color: rgba( 0, 0, 0, 0.25);
}

.bg-yelow{
	background-color: #fff9dc;
}

.bg-green{
	background-color: #e5ffe7;
}

.bg-red{
	background-color: #ffe5e5;
}

.card{
	padding: 15px 20px;
	margin-bottom: 20px;
	border-radius: 20px;
}

.card h2{
	margin-bottom: 10px;
}

.list{
	padding: 0 20px;
}

.list li{
	color: #86898f;
	margin-bottom: 10px;
}

.table{
	width: 100%;
}

.table td{
	padding-bottom: 10px;
}

.table td:nth-child(2),td:nth-child(3){
	color: #86898f;
}

.link-list{
	list-style: none;
	padding: 0;
}

.link-list li{
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom: 1px solid #ccc;
}

.contact h2{
	text-align: center;
}

.form-group label{
	display: block;
	font-size: 14px;
	color: #86898f
}

.form-group input,
.form-group textarea{
	width: 100%;
	box-sizing: border-box;
	border: none;
	border-bottom: 1px solid #ccc;
	color: #000;
	padding: 15px 0 10px;
	outline: none;
	font-family: inherit;
	background-color: transparent;
}

.row{
	display: flex;
	margin-bottom: 20px;
}

.row > .form-group{
	width: 50%;
}

.row > .form-group:first-child{
	margin-right: 20px;
}

.btn{
	background-color: #111;
	padding: 15px 20px;
	color: white;
	border: none;
	font-family: inherit;
	cursor: pointer;
}

.btn:hover{
	opacity: 0.7;
}

/* Position */

.box{
	width: 100%;
	height: 50px;
	background-color: #111;
	color: white;
	/* font-family: inherit; */
	padding: 10px;
	text-align: center;
	position: fixed;
	top: 0%;
	left: 0%;
}

.footer-box{
	position: fixed;
	width: 100%;
	bottom: 0;
	left: 0;
	text-align: center;
	background-color: #111;
	color: white
}