@import url('css/all.min.css');

* {box-sizing: border-box;}
html { 
	background-color: #fff;
	font-family: 'Poppins', sans-serif; 
	font-size: 19px; 
	line-height: 1.5; 
	-ms-text-size-adjust: 100%; 
	-webkit-text-size-adjust: 100%; 
	height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
	text-align: center; 
	color: #6f6f6f;
	display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 0 30px;
}

h1, h2 { color: #0a406e; margin-bottom: 0; }

a { color: #0a406e; text-decoration: none; }
a:hover { color: #0a406e; text-decoration: underline; }

.wrap {
  max-width: 900px;
  margin: 0 auto;
}
.logo {
  max-width: 433px;
  width: auto;
  margin-bottom: 30px;
  height: auto;
}
.underline {
	margin: 40px auto;
	height: 3px;
	width: 50px;
	background-color: #2aa0ed;
}
.tagline {
	font-weight: 400;
	font-size: 18px;
	margin-bottom: 20px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.social {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.social__link {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.social__link  i {
    height: 40px;
    width: 40px;
    border-radius: 50px;
    background-color: #2aa0ed;
    color: white;
    display: flex !important;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.social__link i:before {
    font-size: 20px;
}
.social__link i:hover {
    background-color: #1495ea;
}
@media screen and (max-width: 600px) {
	body {
		display: block;
		font-size: 16px;
		padding: 0;
	}
    .logo {
        max-width: 300px;
        margin-bottom: 20px;
        height: 40px;
    }
    .underline {
        margin: 30px auto;
    }
}