@font-face {
    font-family: 'Tobias';
    src: url('../fonts/Tobias-Thin.woff2') format('woff2'),
         url('../fonts/Tobias-Thin.woff') format('woff');
    font-weight: 100; /* Adjust if needed */
    font-style: normal;
}

@font-face {
    font-family: 'Octin College';
    src: url('../fonts/Octin\ College\ Rg.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Loading the Variable Font */
@font-face {
    font-family: 'Instrument Sans';
    src: url('../fonts/InstrumentSans-VariableFont_wdth\,wght.woff2') format('woff2');
    font-weight: 100 900; /* Variable weight range */
    font-stretch: 75% 125%;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Instrument Sans';
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fffdf0;
    text-align: center;
    font-family: 'Instrument Sans', sans-serif;
    font-stretch: 90%;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding:40px;
}

.logo {
    max-width: 480px;
    width:100%;
    margin-bottom: 40px;
}

.border .top{
    position:fixed;
    height:20px;
    width:100%;
    top:0;
    left:0;
    z-index: 100;
    background-color: #dcba5a;
}

.border .bottom{
    position:fixed;
    height:20px;
    width:100%;
    bottom:0;
    left:0;
    z-index: 100;
    background-color: #dcba5a;
}

.border .left{
    position:fixed;
    width:20px;
    height:100%;
    top:0;
    left:0;
    z-index: 100;
    background-color: #dcba5a;
}

.border .right{
    position:fixed;
    width:20px;
    height:100%;
    top:0;
    right:0;
    z-index: 100;
    background-color: #dcba5a;
}

h1 {
    font-size: 32px;
    -webkit-font-smoothing: antialiased!important;
    color: #1e1411;
    font-family: 'Tobias', sans-serif;
    font-weight:300;
    margin-bottom: 40px;
    max-width:860px;
    width:100%;
}

p {
    font-size: 24px;
    color: #1e1411;
    margin: 10px 0 40px;
    font-weight:300;
    font-family: 'Tobias', sans-serif;
    font-stretch: 90%; /* 90% width */
}

.button-wrapper{
    display: flex;
    flex-wrap: wrap;
    align-items:center;
    justify-content: center;
    gap: 16px;
}

.button {
    display: inline-block;
    padding: 12px 20px;
    background-color: #dcba5a;
    color: #fffdf0;
    text-decoration: none;
    font-size: 20px;
    font-weight:600;
    border-radius: 5px;
    transition: 0.3s;
    font-family: 'Octin College', sans-serif;
}

.button:hover {
    background-color: #f8b882;
}

.social-links {
    margin-top: 40px;
}

.social-links a {
    margin: 0 10px;
    color: #cc7228;
    text-decoration: none;
    font-size: 20px;
    font-weight:600;
    text-transform: uppercase;
    border-bottom:2px solid #cc7228;
    font-family: 'Octin College', sans-serif;
    transition: 0.3s;
}

.social-links a:hover{
    color: #f8b882;
    border-bottom:2px solid #f8b882;
}