JSFiddle - React, Tailwind, and code Playground
by Rozina Szogyenyi
HTML
<!DOCTYPE html>
<html>
<head>
<style>
body {
font-family: 'Lexend Giga', 'Arial', sans-serif;
line-height: 1.6;
color: #000;
max-width: 650px;
margin: 0 auto;
text-align: center;
background-color: #fff;
}
.container {
padding: 25px;
}
.invitation-card {
border: 2px solid #000;
padding: 100px 30px;
margin-bottom: 30px;
position: relative;
}
.invitation-card:before {
content: '';
position: absolute;
top: 10px;
left: 10px;
right: 10px;
bottom: 10px;
border: 1px solid #000;
}
.content {
position: relative;
z-index: 1;
padding: 15px;
}
.header {
font-size: 26px;
margin: 25px 0 15px;
letter-spacing: 2px;
text-transform: uppercase;
}
.names {
font-size: 32px;
font-weight: normal;
margin: 30px 0;
line-height: 1.2;
text-transform: uppercase;
letter-spacing: 1px;
}
.svg-ampersand {
margin: 5px auto 15px;
height: 60px;
display: flex;
justify-content: center;
align-items: center;
}
.date {
font-size: 26px;
margin: 20px 0;
letter-spacing: 1px;
}
.location {
font-style: italic;
margin-bottom: 30px;
}
.rsvp {
margin-top: 40px;
font-size: 24px;
text-transform: uppercase;
letter-spacing: 2px;
}
.website {
margin-top: 15px;
color: #000;
font-size: 20px;
}
.website a {
color: #000;
...