@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Monsieur+La+Doulaise&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

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

body {
    margin: 0;
    font-family: 'Playfair Display', serif;
    background-color: #dfb0b9;
}

.invite-container {
    width: 736px;
    min-height: 1026px;
    margin: 30px auto;
    text-align: center;
    box-sizing: border-box;

    background-image: url('../images/background.jpg');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;

    padding: 40px 60px 120px 60px;
}

nav {
    margin-top: 135px;
    margin-bottom: 50px;
}

.nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav li {
    display: inline-block;
    margin: 0 18px;
}

.nav a {
    text-decoration: none;
    color: #7a1c2e;
    font-size: 22px;
    font-weight: 700;
    transition: 0.3s;
}

.nav a:hover {
    transform: scale(1.05);
    color: #c94b5f;
    
}

h1 {
    font-size: 74px;
    margin: 0;
    line-height: 1;
}

.script {
    font-family: "Monsieur La Doulaise", cursive;
    color: #7a1c2e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}

h2 {
    font-size: 42px;
    margin: 10px 0 20px;
    color: #7a1c2e;
    line-height: 1.1;
}

h3 {
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 400;
    color: #7a1c2e;
    margin: 0 0 25px;
}

.celebrate {
    font-size: 18px;
    letter-spacing: 2px;
    color: #7a1c2e;
    margin-top: 50px;
    margin-bottom: 10px;
}

.details {
    margin: 25px 0;
    line-height: 1.7;
    font-size: 20px;
    color: #7a1c2e;
}

.list {
    list-style-type: circle;
    list-style-position: inside;
    margin: 20px 0;
    padding: 0;
    color: #7a1c2e;
    font-size: 18px;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    margin-top: 25px;
    text-decoration: none;
    color: white;
    background: linear-gradient(#c94b5f, #7a1c2e);
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}