html { 
  scroll-behavior: smooth; 
}

body {
  font-family: Arial;
  margin: 0;
  min-width: 280px;
  background-color: #000;
}


.button {
  background: #CF9802;
  background: linear-gradient(to bottom, #CF9802 0%, #A9A872 100%);
  border: 3px solid #ffffff;
  border-radius: 30px;
  color: #ffffff;
  padding: 20px 40px 20px 40px;
  margin: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.2em;
  cursor: pointer;
}

.button:hover {
   background: linear-gradient(to bottom, #A9A872  0%, #CF9802 100%);
}


.header {
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 50px;
}

.header>h1 {
  font-size: 3.4em;
  font-family: sans-serif;
  font-weight: 800;
  text-align: center;
  background: #CF9802;
  background: linear-gradient(to bottom, #CF9802 0%, #A9A872 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header>h1:hover {
background: linear-gradient(to bottom, #A9A872  0%, #CF9802 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}


.header>p {
  color: #ccc;
  font-size: 1.4em;
  font-family: sans-serif;
  text-align: center;
  font-weight: 700;
}

.logo {
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 200px;
  background-image: url("img/logo.jpeg");
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}

