@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary:      #6E1A34;
    --primary-hover:#520f25;
    --secondary:    #EEDDE2;
    --light:        #f8f8f8;
    --light-gray:   #d0d0d0;
    --gray:         #404040;
    --dark:         #141414;
}

* {
    font-size: 1.1rem;
    font-family: "Poppins", serif;
}

body {
    padding: 5em 0 0 0;
    margin: 0;
    background-color: var(--light);
    overflow-x: hidden;
}

section {
    min-height: 100vh;
    padding: 3em 5vw;
    box-sizing: border-box;
}

h1 {
    font-size: 2.5rem;
    font-family: "Playfair Display", serif;
    text-align: center;
}

h2 {
    font-size: 2.2rem;
    font-family: "Playfair", serif;
    margin-top: 0;
}

h3 {
    font-size: 1.6rem;
    font-family: "Playfair", serif;
    margin-top: 0;
}

a {
    text-decoration: none;
    font-size: 1rem;
    transition: .2s;
    display: flexbox;
    align-items: center;
    color: var(--primary);
    font-weight: 500;
}

a:hover {
    color: var(--primary-hover);
}

a i {
    line-height: 0;
    font-size: .9em;
    transition: .2s;
}

a.button-bg {
    background-color: var(--primary);
    color: var(--light) !important;
    padding: .4rem 1.3rem;
    border-radius: .2rem;
}

a.button-bg:hover {
    background-color: var(--primary-hover);
}

.row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: fit-content;
    min-width: 10%;
}

button {
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: .2em;
    transition: .2s;
}

button:hover {
    background-color: var(--primary-hover);
}

@media screen and (max-width: 500px) {
    * {
        font-size: 1rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
}