html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Boheme Floral';
    src: url(../fonts/Boheme\ Floral.ttf);
}

@font-face {
    font-family: 'Trajan Pro';
    src: url(../fonts/TrajanPro-Regular.ttf);
}

body {
    font-family: 'Trajan Pro';
    margin: 0 auto;
    max-width: 1440px;
    color: #A3A590;
    background-color: #F7F7F7;
}

/* HOME */

.home {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 0 40px;
}

.home a {
    color: #A3A590;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
    text-decoration: underline;
    transition: 0.4s;
}

.home a:hover {
    color: #7A7C6C;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 20px 0 160px;
}

.links h2 {
    font-size: 48px;
    font-weight: 400;
    line-height: 82px;
    text-transform: uppercase;
}

.links .container-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.links .container-links div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.links .container-links div h3 {
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.links .container-links div img {
    width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.links .container-links div a {
    font-family: "Jost";
    font-size: 18px;
    line-height: 100%;
    color: #ffffff;
    background-color: #A3A590;
    text-decoration: none;
    border-radius: 30px;
    padding: 10px 60px;
    transition: 0.8s;
}

.links .container-links div a:hover {
    color: #a3a590;
    background-color: #ffffff;
    border: 1px solid #A3A590;
}