* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f3e6d5;
}

p,
a,
li {
    font-family: "Montserrat", sans-serif;
}

@font-face {
    font-family: Palatine;
    src: url(../fonts/Palatine\ Regular.otf);
}
/* Desktop */

/* Navbar */

.header {
    height: 100vh;
    background-color: #f3e6d5;
    color: #A5120E;
}

.header .navbar img {
    width: auto;
    margin: 0 auto;
}

.header .navbar {
    display: flex;
    height: 10vh;
}

/* Header */

.content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.content .image img {
    width: 80%;
}

.content .text {
    justify-items: center;
    align-content: center;
}

.palatine {
    font-family: Palatine;
}

.heading {
    font-size: 3rem;
}


.btn {
    font-family: "Noto sans", sans-serif;
    color: #ffffff;
    font-size: 20px;
    background: #851711;
    padding: 10px 20px 10px 20px;
    border: solid #c48177 3px;
    border-radius: 10%;
    text-decoration: none;
}

.text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

.text a {
    margin-top: 20px;
}

.text p {
    font-size: 1.5rem;
}




