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

body {
    overflow-x: hidden;
    font-family: 'Cormorant Garamond', serif;
}

html {
    scroll-behavior: smooth;
}

button{
    font-family: 'Cormorant Garamond', serif;
}

h1,
h2,
h3,
.wedding-title {
    font-family: 'Great Vibes', cursive;
    font-weight: 400;
    color: #8b5e5e;
    letter-spacing: 1px;
}

.hero {
    background-color: #e4e5e0;
    height: 80vh;
    width: 100vw;
    position: relative;
}

h1{
    font-size: calc(3rem + 3vw);
}

.hero p{
    font-size: 18px;
}

.flowers {
    object-fit: cover;
    position: absolute;
    z-index: 1;
    width: clamp(200px, 40%, 400px);
}

.flowers_1{
    top: 0;
    left: 0;
    transform: translate(-40%, -40%) rotate(-180deg);
}

.flowers_2{
    bottom: 0;
    right: 0;
    transform: translate(40%, 40%);
}

.flowers_3{
    top: 0;
    right: 0;
    transform: translate(40%, -40%) rotate(-180deg);
}

.flowers_4{
    bottom: 0;
    left: 0;
    transform: translate(-40%, 40%);
}

.hero_text {
    text-align: center;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner {
    background-color: #f5e9e8;
    height: 20vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    font-size: 24px;
    position: relative;
    z-index: 2;
}

.donate{
    /* button */
    background-color: white;
    color: #8b5e5e;
    border: none;
    padding: 10px 40px;
    border-radius: 5px;
    cursor: pointer;
}

.donate:hover{
    background-color: #8b5e5e;
    color: white;
}

.registry{
    background-color: #fffaf2;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    font-size: 24px;
    position: relative;
    z-index: 2;
    padding: 80px 1rem;
    min-height: 100vh;
    overflow: hidden;
}

.bank_details p{
    font-size: 18px;
    font-family: 'Cormorant Garamond', serif;
}

.description {
    font-size: 18px;
    margin-bottom: 40px;
}

.registry_text p{
    font-size: 18px;
}

.title{
    font-size: 36px;
    color: #8b5e5e;
}

.buttons{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.buttons a {
    flex-basis: calc(33.33% - 20px);
    flex-grow: 1;
    /* background-color: white;
    color: #8b5e5e; */
    /* background-color: #be9494;
    color: white;
    border: none;
    padding: 10px 40px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px; */
}

.buttons button {
    background-color: #be9494;
    color: white;
    border: none;
    padding: 10px 40px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    width: 100%;
}

.buttons button:hover {
    background-color: #8b5e5e;
    color: white;
}