* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    text-decoration: none;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Verdana';
}
  
.content {
    flex: 1;
}
  
.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.main-screen {
  height: 400px;
  width: 100%;
	display: flex; 
  align-items: center;
  justify-content: center;
	background-image: url(../img/background.jpg);
	background-size: cover;
	margin-top: 70px;
}

.main-screen-tittle {
  font-family: 'Verdana';
  font-size: 30px;
  color: white;
  text-shadow: 0px 0px 20px #000000;
  text-align: center;
}

/* 	OUR-HISTORY-BLOCK-STYLES */
.our-history-block {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	margin-top: 83px;
	margin-bottom: 80px;
}
.our-history-tittle {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 22px;
}

.our-history-text-block {
	text-align: left;
	height: auto;
	width: 718px;
	font-size: 15px;
}

.our-history-p {
	margin-bottom: 34px;
}

.our-history-p:last-child {
	margin-bottom: 0;
}

.join-button {
	margin-top: 42px;
	width: 150px;
	height: 35px;
	font-size: 15px;
	font-weight: 700;
	color: white;
	background-color: #008FDF;
	border: none;
	display: flex;
	justify-content: center;
  align-items: center;
  cursor: pointer;
}


