@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;800&family=Playfair+Display:wght@400;800&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
	--first-white: #f2e2ce;
	--second-pink: #f2c7ae;
	--third-orange: #bf522a;
	--first-brown: #260801;/* cor da logo */
	--second-brown: #592316;
  --white: #fff;
}

body {
  background: var(--second-pink);
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  caret-color: transparent;
  font-family: 'Open Sans', sans-serif;
  color: var(--white);
  letter-spacing: 2px;
  background: var(--second-pink) url(../images/Wallpaper-t.webp) bottom center/cover no-repeat fixed;
}

main {
  max-width: 600px;
  padding: 1.5rem;
  text-align: center;
  border-radius: 10px;
}

.logo {
  width: 180px;
}

.title {
  background-color: var(--second-brown);
  border-radius: 10px;
  padding: .5rem;
  margin-bottom: 4rem;
}

.title h1 {
  font-size: 1.4rem;
}

p {
  background-color: var(--second-brown);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 1rem;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: var(--white);
}

a .btn {
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 1.5rem;
  border-radius: 10px;
  background-color: var(--second-brown);
  box-shadow:
  6px 6px 4px var(--first-brown);
}

.icon {
  margin-right: .8rem;
  font-size: 1.7rem;
}

li:hover .icon {
  animation: shake 0.5s ease-in-out;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: .5rem;
}

.footer-icons {
  margin-top: 3rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.icon-footer {
  width: 100%;
  font-size: 1.2rem;
  display: flex;
  flex-direction: row;
  padding: .5rem;
  color: var(--white);
}

.btn:hover,
.icon-footer:hover {
  transform: scale(0.98);
}

@media screen and (min-width: 800px){
 
body {
  background: var(--second-pink) url(../images/Wallpaper-horiz-t.webp) bottom center/cover no-repeat fixed;
}

}