@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Lato:wght@300;400&family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&display=swap');

html,
body {
    margin: 0;
}

body {
    background-color: #f8f8f6;
    display: flex;
    justify-content: center;
    margin: 50px 0;
}

p {
    color: #c29196;
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin: 15px 0;
    letter-spacing: 2px;
}

.container {
    text-align: center;
}

.flowers {
    display: block;
    margin: 0 auto 20px;
}

.title {
    margin: 0;
    color: #b09fbd;
    font-family: "Bodoni Moda", serif;
    font-size: 80px;
    font-weight: 400;
    line-height: 1.1;
}

.titlesmall, .titlesmall a, .titlesmall a:hover {
    margin: 0;
    color: #b09fbd;
    font-family: "Bodoni Moda", serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.1;
    text-decoration: none;
}

.soon {
	margin: 8px 0 20px;
	color: #eac1c5;
	font-family: "Lato", sans-serif;
	font-size: 18px;
	font-weight: 100;
	letter-spacing: 14px;
	text-transform: uppercase;
}

.links {
    margin: 0;
    color: #d2bc99;
    font-family: "Bodoni Moda", serif;
    font-size: 14px;
    font-weight: 400;
}

.links a { 
	color: #d2bc99; 
	text-decoration: none; 
	margin: 0 10px;
	transition: color 1s ease; 
} 

.links a:hover { 
	color: #c38b8e; 
}

/* CONTACT FORM */

/* FORM */

form p {
    margin: 0 0 10px 0;
}

form p:first-child {
    display: flex;
    flex-direction: column;
}

form label {
    display: inline-block;
    width: 120px;
    margin-right: 10px;
    text-align: right;
    
    color: #d2bc99;
    font-family: "Bodoni Moda", serif;
    font-size: 14px;
    font-weight: 400;
}

form input[type="text"],
form textarea {
    box-sizing: border-box;
    margin: 5px;
    padding: 5px;
    
    border: 1px solid #ebe6ec;
    background: #ebe6ec;
    
    color: #b28589;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: 100;
}

form input[type="text"]:focus,
form textarea:focus {
    border: 1px solid #cfc3d6;
    background: #ebe6ec;
    outline: none;
}

form input[type="submit"] {
    margin: 5px;
    padding: 5px;
    
    border: 1px solid #ebe6ec;
    background: #ebe6ec;
    
    color: #b28589;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: 100;
    
    cursor: pointer;
}

form input[type="submit"]:hover {
    border: 1px solid #cfc3d6;
    background: #ebe6ec;
}

.formrow {
    display: flex;
    align-items: flex-start;
}

.formrow label {
    width: 120px;
    margin: 8px 10px 0 0;
    text-align: right;
    flex-shrink: 0;
}


/* LINK PAGE */

.link-container {
    width: 500px;
    margin: 0 auto;
}

.link-item {
    display: grid;
    grid-template-columns: 180px 1fr;
    align-items: start;
    margin-bottom: 12px;
}

.link-title {
    text-align: right;
    padding-right: 12px;
    color: #d2bc99;
    font-family: "Bodoni Moda", serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: color 1s ease;
}

.link-title:hover {
    color: #c38b8e;
}

.link-description {
    text-align: left;
    padding-left: 12px;
    border-left: 1px solid #b5ae8c;
    color: #eac1c5;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 100;
}

.link-description a {
    color: #c5c1c3;
    text-decoration: none;
}

.link-description a:hover {
    color: #eac1c5;
    text-decoration: none;
}

.link-list {
    columns: 3;
    column-gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.link-list li {
    margin-bottom: 8px;
    break-inside: avoid;
}

.link-list a {
    color: #d2bc99;
    font-family: "Bodoni Moda", serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: color 1s ease;
}

.link-list a:hover {
    color: #c38b8e;
}

/* HEADERS */

h1 {
    font-family: "Bodoni Moda", serif;
    font-weight: 400;
    color: #b5ae8c;
    font-size: 24px;
    letter-spacing: 8px;
    border-bottom: 1px solid #dcc6ca;
    padding-bottom: 8px;
}

h2 {
    font-family: "Bodoni Moda", serif;
    font-weight: 400;
    color: #dcc6ca;
    font-size: 20px;
}

h3 {
    font-family: "Bodoni Moda", serif;
    font-weight: 400;
    color: #c9bfcf;
    font-size: 16px;
}