* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fbfbfb;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  background: rgba(254, 197, 207, 0.6);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
}

nav img {
  width: 150px;
}

nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #b55589;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s;
}

nav ul li a:hover {
  background-color: #b55589;
  color: #fff;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
  padding: 20px;
  max-width: 1240px;
  margin-top: 20px;
  min-height: 100vh;
}

section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  width: 90%;
}

section h1 {
  font-size: 1.5rem;
  color: #b55589;
}

section p {
  font-size: 1.1rem;
  color: #333;
}

.social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.social a {
  text-decoration: none;
  color: #ffffff;
  background-color: #f3b46d;
  font-size: 3rem;
  transition: all 0.3s;
  /* padding: 10px 20px; */
  border-radius: 1000px;
  width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social a:hover {
  background-color: #F69426;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  /* padding: 20px; */
  background: rgba(254, 197, 207, 0.6);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin-top: 40px;
}

footer p {
  font-size: 1rem;
  color: #333;
}

footer .content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 90%;
    max-width: 1240px;
}

footer .content a {
  text-decoration: none;
  color: #b55589;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s;
}

footer .content nav{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

footer .content nav a:hover {
  background-color: #b55589;
  color: #fff;
}

footer .content a img{
    width: 150px;
}

footer .copyright{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 20px;
    background-color: #b55589;
    color: #fff;
}

footer .copyright p{
    font-size: 1rem;
    color: #fff;
}

@media (max-width: 720px) {
    nav img {
        width: 100px;
    }

    nav ul li a {
        font-size: 1rem;
    }

    main{
        gap: 40px;
    }

    section h1 {
        font-size: 1.2rem;
    }

    section p {
        font-size: 1rem;
    }

    .social a {
        font-size: 2.2rem;
        width: 60px;
        height: 60px;
    }

    footer .content a {
        font-size: 1rem;
    }

    footer .content a img{
        width: 100px;
    }
    
    footer .copyright p{
        font-size: 0.8rem;
    }
}
