@import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Aboreto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

* {
  font-family: "Didact Gothic", serif;
  font-weight: 400;
  font-style: normal;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
    background-color: #fff;
}

section {
    padding: 28px 8%;
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: #C50B0B;
    border-radius: 30px;
    padding: 15px 40px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: backgound-color .3s ease;
}

a {
    text-decoration: none;
}

.btn-default:hover {
    background-color: #df3e3e;
}

.title{
    font-family: "Aboreto", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 6rem;
    color: #FF2F1F;
    margin: 0;
    text-align: center;
}

.sub-title{
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 800;
    font-size: 5rem;
    color: #141414D1;
    margin: 10px 0;
    text-align: center;
}

@media screen and (max-width: 1170px) {
    body {
        align-items: center;
    }

    .title {
        padding-top: 150px;
        font-family: "Aboreto", serif;
        font-weight: 400;
        font-style: normal;
        font-size: 4rem;
        color: #FF2F1F;
        margin: 0;
        text-align: center;
    }

    .sub-title{
        font-family: "EB Garamond", serif;
        font-optical-sizing: auto;
        font-style: normal;
        font-weight: 800;
        font-size: 2.5rem;
        color: #141414D1;
        margin: 10px 0;
        text-align: center;
    }
}