@import url('https://fonts.googleapis.com/css2?family=Gowun+Dodum&family=Parisienne&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0&icon_names=line_end_arrow');

* {
  box-sizing: border-box;
  
  font-family: "Gowun Dodum", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: #faecd7;
  margin: 0;
}

main {
  background-color: #fdf6ec;
  max-width: 800px;
  margin: auto;
  padding: 24px;

  display: grid;
  grid-template-areas:
  'header'
  'cover'
  'main';
  background-color: white;
  gap: 10px;

  align-content: baseline;
}

h1 {
  font-family: "Parisienne", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 4em;
  font-weight: bold;
  margin: 0;
}

h2 {
  font-weight: bold;
}

h3 {
  font-style: italic;
  font-weight: bold;
  margin-bottom: 4px  ;
  font-size: 28px;
}

h4 {
  font-weight: bold;
  color: #ff4e00;
  margin-top: 0;
}

em {
  color: #ff4e00;
  font-weight: bold;
  font-style: normal;
}

.header {
  text-align: center;
  background-image: url('./assets/logo_dog_connexion.jpg');
  background-position: top right;
  background-repeat: no-repeat;  
  background-size: 140px;
  margin: 0;
}

.social a {
  margin-right: 24px;
}

.social img {
  width: 100px;
}

.cover img {
  width: 100%;
  height: fit-content;
}

.intro {
  text-align: center;
}

.program {
  margin: auto;
}

.cta {
  display: inline-block;
  background-color: #ff4e00;
  color: white;
  font-weight: bold;
  padding: 24px;
  border-radius: 14px;
  text-decoration: none;
}

.cta span {
  vertical-align: middle;
}

@media (max-width: 800px) { 
  .header {
    text-align: center;
    background-image: url('./assets/logo_dog_connexion.jpg');
    background-position: top center;
    background-repeat: no-repeat;  
    background-size: 140px;
    padding: 164px 0 0;
  }
}