@font-face {
	font-family: 'Arial';
	src: local('Arial'),
		url(fonts/font.ttf) format('ttf'),;
}

* {
	box-sizing: border-box;
}

html, body {
  margin: 0;
	padding: 0;
  width: 100vw;
  height: 100vh;
  font-family: 'Arial';
}

h1, p {
  margin: 0;
  padding: 0;
}

.body {
  display: flex;
	flex-direction: column;
	justify-content: space-between;
  align-items: center;
  background-image: url("img/home2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.container {
  max-width: 80%;
  height: 100%;
  display: flex;
  align-items: center;
}

.content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 200px 1fr 1fr 200px;
  gap: 10px;
}

.logo {
  grid-column: 5/9;
  display: flex;
  justify-content: center;
}

.logo-img {
  height: 100%;
}

.main-header {
  text-transform: uppercase;
  color: azure;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 2/12;
  grid-row: 2/3;
}

.main-link {
  text-decoration: none;
}

.disclamer {
  grid-column: 2/12;
  grid-row: 4/5;
}

.disclamer-text {
  color: azure;
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: blanchedalmond;
  width: 180px;
  padding: 15px 30px;
  border-radius: 20px;
  color: #181515;
  transition: 0.3s;
}

.btn:hover {
  background-color: rgb(253, 220, 171);
}


@media (min-width: 320px) and (max-width: 1290px) {
  .content {
    gap: 0;
  }
  .main-header {
    font-size: 1.5rem;
    grid-column: 1/13;
  }
  .disclamer-text {
    font-size: 1.2rem;
  }
}


@media (min-width: 320px) and (max-width: 768px) {
  .container {
    max-width: 100%;
  }
  .content {
    height: 80%;
  }
  .main-header {
    font-size: 1.1rem;
    padding: 0 10px;
  }
}

@media (min-width: 320px) and (max-width: 428px) {
  .main-header {
    display: none;
  }

  .disclamer {
    grid-column: 2/12;
    grid-row: 3/5;
  }
}