* {
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}


@font-face {
    font-family: TrajanPro;
    src: url("./fonts/TrajanPro-Bold.otf");
}

@font-face {
    font-family: seasons;
    src: url("./fonts/theseasons-bd.otf");
}

body {
    background: url("/assets/background.png") no-repeat center center;
    background-size: cover;
    font-family: TrajanPro;
    text-align: center;
    color: #69443c;
    min-height: 100vh;
}


nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

nav a {
    font-size: 40px;
    font-family: TrajanPro;
    color: #69443c;
}


h1 {
    font-size: 110px;
    font-family: seasons;
    margin-top: 100px;
}

p {
    font-family: seasons;
    font-size: 20px;
}

h1 span {
    font-family: TrajanPro !important;
}

.btns {
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-bottom: 30px;
}

.btns a {
    padding: 10px 35px;
    border-radius: 30px;
    background-color: #fff;
    font-family: TrajanPro;
    color: #69443c;
}


.center {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

@media(max-width:730px) {
    h1 {
        font-size: 80px;
    }
}

@media(max-width:460px) {
    h1 {
        font-size: 60px;
    }

    p {
        font-size: 17px;
    }

    .btns {
        margin-top: 30px;
    }

    .btns a {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media(max-width:370px) {
    h1 {
        font-size: 50px;
    }

    p {
        font-size: 14px;
    }

    .btns a {
        font-size: 10px;
    }

    .btns {
        margin-top: 20px;
    }
}