/* import google font  cairo*/
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

/* include padding/border in element size to avoid overflow when adding padding */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    /* prefer min-height so adding padding doesn't exceed the viewport */
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: "Cairo", sans-serif !important;
}

body {
    background-image: url("forestbridge.jpg");
    min-height: 100vh;
    background-position: center;
    background-size: cover;
    color: white;
    display: flex;
    flex-direction: column;
}

h1 {
    font-size: 1.5rem;
}

h1 span {
    font-weight: bold;
    font-size: 2.5rem;
}

p {
    font-size: 1.5rem;
}

.topleft {
    width: 100%;
}

.bottomleft {
    position: absolute;
    bottom: 0;
    left: 16px;
}

.middle {
    width: 80%;
    margin: auto;
    text-align: center;
}

hr {
    margin: auto;
    width: 40%;
}

.topleft .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 85%;
    margin: 0 auto;
    padding: 10px 30px;
}

.lang-switch a {
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
    text-decoration: none;
}

@media screen and (max-width:768px) {
    h1 {
        font-size: 1.2rem;
        /* line-height: 1.5; */
    }

    h1 span {
        font-size: 2rem;
    }

    p {
        font-size: 1.2rem;
    }

    .lang-switch a {
        font-size: 1.2rem;
    }
}