    @font-face {
    font-family: 'SemiBold'; 
    src: url('../font/AlbulaPro-NarrowSemiBold.otf') format('opentype'); 

}
@font-face {
    font-family: 'Bold'; 
    src: url('../font/AlbulaPro-NormalBold.otf') format('opentype'); 
}
@font-face {
    font-family: 'Cursive'; 
    src: url('../font/AlbulaPro-NarrowSemiBoldOblique.otf') format('opentype'); 
}
@font-face {
    font-family: 'Normal'; 
    src: url('../font/AlbulaPro-NormalLight.otf') format('opentype'); 
}
body {
    font-family: 'SemiBold', sans-serif;
    text-align:justify;
    margin: 0;
    padding: 0;
    background-image: url('../img/bkg/bkg-main.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}
h1 {
    font-family: 'Cursive';
}
h2, h3 {
    font-family: 'SemiBold', sans-serif;
}
p {
    font-family: 'Normal';
    font-size:14px;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SemiBold';
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 300px;
    background: url('../img/bkg/bkg01.jpg') center center no-repeat;
    background-size: cover;
    padding: 20px;
    position: relative;
    animation: backgroundAnimation 20s linear infinite;
}
@keyframes backgroundAnimation {
    100%, 0%, 24% { background-image: url('../img/bkg/bkg01.jpg'); }
    27%, 49% { background-image: url('../img/bkg/bkg02.jpg'); }
    52%, 74% { background-image: url('../img/bkg/bkg03.jpg'); }
    77%, 98% { background-image: url('../img/bkg/bkg04.jpg'); }
}
.logo {
    text-align: center;
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
}
.logo img {
    width: 550px;
    height: 100%;
}
.nav {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    text-shadow: 1px 1px 2px grey;
}
.nav-button {
    font-size: 16px;
    color: #fff;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: 'SemiBold', sans-serif;
    transition: text-shadow 0.3s;
    text-shadow: 1px 1px 2px #000;
}
.nav-button:hover {
    color: #ccc;    
}
.separator {
    color: #fff;
    font-weight: bold;
    font-size: 22px;
    margin: 0 10px;
}
button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    overflow: visible;
    cursor: pointer;
    outline: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,.5);
}
.container p{
    margin:10px;
}
h1 {
    margin-top:10px;
    margin-bottom:20px;
    color: #fc0;
    text-shadow:1px 1px 3px #f50;
}
.row {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 20px;
    width:100%;
}
.destiny {
    width: 230px;
    height: 230px;
    border-radius: 20px;
    background-size: cover;
    position: relative;
}
.destiny-text {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}
.destiny:hover {
    transform: scale(1.04);
    box-shadow: 0px 0px 10px #000;
}
.destiny:hover .destiny-text {
    opacity: 1;
}
.wwa-cont{
    width: 800px;
  display: flex;
}
.wwa-img {
    width: 400px;
    height:300px;
    border-radius:20px;
    margin:10px;
    background-image: url('../img/wwa/wwa01.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    animation: wwaAnimation 15s linear infinite;
}
@keyframes wwaAnimation {
    100%, 0%, 24% { background-image: url('../img/wwa/wwa01.jpg'); }
    27%, 49% { background-image: url('../img/wwa/wwa02.jpg'); }
    52%, 74% { background-image: url('../img/wwa/wwa03.jpg'); }
    77%, 98% { background-image: url('../img/wwa/wwa04.jpg'); }
}
.wwa-text, .wwa-cust, .footext{
    width: 400px;
    box-sizing: border-box;
}
.wwa-cust, .footext{
    margin:10px;
}
.footext p{
    font-size:16px;
}
.footext a{
    color:#ccc;
    font-family: Normal;
    text-decoration:none;
}
.footer{
    display: flex;
    align-items: center;
    width: 100%;
    height: 300px;
    background: rgb(27,27,27);
    background: linear-gradient(90deg, rgba(27,27,27,1) 0%, rgba(65,65,65,1) 100%);
    color: #ccc;
    padding: 20px;
    position: relative;
    flex-direction: column;
}
.bottomtext{
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%); 
      color: #666;
}
  
/** Media Queries **/

@media (min-width: 800px){
    .header{
        height: 400px;
    }
    .logo img{
        width: 750px;
    }
}

@media (min-width: 1200px){
    .header{
        height: 450px;
    }
    .logo img{
        width: 800px;
    }
}