@font-face { 
    font-family: 'DIN Next LT W23';
    src: url('assets/fonts/DIN-NEXT-LT-W23-LIGHT.TTF') format('truetype');
    font-weight: 300;
}

@font-face { 
    font-family: 'DIN Next LT W23';
    src: url('assets/fonts/DIN-NEXT-LT-W23-MEDIUM.TTF') format('truetype');
    font-weight: 600;
}

@font-face { 
    font-family: 'DIN Next LT W23';
    src: url('assets/fonts/DIN-NEXT-LT-W23-REGULAR.TTF') format('truetype');
    font-weight: 500;
}

body, html {
    height: 100%;
    margin: 0;
    /* font-family: Arial, sans-serif; */
    font-family: 'DIN Next LT W23'; 
}

p {
    margin: 0;
    padding: 0;
}

body {
    /* background-image: url('path/to/your/background.jpg'); 
    background-size: cover;
    background-position: center; */
    background-color: #FDF6E7;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
}

.btn {
    background-color: #FF8E00; /* Green */
    border: none;
    color: #262626;
    padding: 10px 32px;
    text-align: center;
    font-size: 16px;
    margin: 10px;
    cursor: pointer;
    transition: 0.3s all;
    font-family: 'DIN Next LT W23';
    font-weight: 500;
    text-decoration: none;
}

.btns{
    display: flex;
}

.btn:hover {
    opacity: 0.7;
    transition: 0.3s all;

}

.content{
    margin: 5px 0px;
    font-family: 'DIN Next LT W23'; 
    font-weight: 300;
    font-size: 26px;
    text-align: center;
}

.content span{
    font-weight: 600;
}