/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

.backgroundPic {
    position: fixed;
    background-image: url("resources/IMG_3011.jpg");
    background-position: 85%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.generalText {
    display: flex;
    flex-direction: column;
    min-height: 97vh;
    justify-content: center;
    align-items: center;

    color: rgba(190, 87, 41, 1);
}

h1 {
    font-family: "Playfair Display";
    font-size: 2.6rem;
    margin: 0px;
}

h2 {
    text-align: center;
    margin-top: -6px;
    font-family: "Playfair Display";
    font-weight: 300;
    font-size: 1.4rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.bulletPoints {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;

    font-family: 'Tinos';
    font-size: 1.2rem;
}

.bulletPoints div{
    color: rgb(184, 121, 92);
    font-weight: bold;
}

a {
    text-decoration: none;
    color: inherit;
    transition: ease-in 0.2s;
}

.hoverLink:hover {
    color: rgba(190, 87, 41, 0.5);
    transition: ease-in 0.2s;
}