/* 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');

body {
    background-image: url("resources/IMG_3011.jpg");
    background-size: cover;
    background-attachment: fixed;
    background-position: 100% 100%;
    background-repeat: no-repeat;
}

.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;
}

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

.bulletPoints {
    display: flex;
    flex-direction: row;
    gap: 60px;
    font-family: 'Tinos';
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.bulletPoints div{
    margin-top: 1rem;
    background-color: rgba(0, 0, 0, 0.28);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;

}

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;
}

@media (max-width: 700px) {

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

}