@font-face {
    font-family: "saintcarellclean";
    src: url("../font/SaintCarellClean.otf") format("truetype")
}

@font-face {
    font-family: "cronde";
    src: url("../font/CRONDE.otf") format("truetype")

}

@font-face {
    font-family: "ztnature-bold";
    src: url("../font/ZTNature-Black.ttf") format("truetype")

}

@font-face {
    font-family: "ztnature-med";
    src: url("../font/ZTNature-Medium.ttf") format("truetype")

}

@font-face {
    font-family: "ztnature-thin";
    src: url("../font/ZTNature-Thin.ttf") format("truetype")

}

@font-face {
    font-family: "creato-reg";
    src: url("../font/CreatoDisplay-Regular.otf") format("truetype")

}

::-webkit-scrollbar {
    display: none;
}

html{
    scroll-behavior: smooth;
}

body{
    margin: 0;
    background-color: #100027;
    font-family: "ztnature-med", sans-serif;
    color: #7151A9;
    font-size: 50px;
    height: 100%;
}

.header{
    position: absolute;
    opacity: 0;
    height: 5vw;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: opacity 0.5s ease-in-out;

}

.header.loaded{
    opacity: 1;
}

.top-bar{
    display: flex;
    width: 92%;
    height: 100%;
    margin: auto;

}

.name{
    font-size: 80%;
    margin-left: 1vw;
    font-family: "ztnature-thin";
    margin: auto;
    align-content: center;
}

.tab-list{
    display: flex;
    width: 40%;
    height: 95%;
    margin-left: 40vw;
    justify-content: space-between;
    align-items: center;
}

.home, .about, .contact{
    display: flex;
    font-size: 1.5vw;
    font-family: "ztnature-thin";
    text-decoration: none;
    color: #DAC7FF;
    border: none;
    
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 7px;
    background-color: rgb(255, 255, 255, 0);
    box-shadow: 0 0 20px rgb(0, 0, 0, 0);

    transition: all 0.2s ease-in-out;
}

.contact{
    color:white;
    cursor: pointer;    
}

.home:hover, .about:hover, .contact:hover{
    background-color: rgb(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgb(0, 0, 0, 0.4);
    color: white;
    cursor: pointer;
}

.hero{
    display: flex;
    background-image: url('../html/images/background4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(4px);
    height: 100vh;
}

.overlay {
    backdrop-filter: blur(0px); 
    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-color: rgba(0, 0, 0, 0.1); 
    z-index: -1;
    
    transition: backdrop-filter 1s ease-in-out;
}

.overlay.loaded{
    backdrop-filter: blur(6px);
}

.area{
    display: flex;
    align-items: center;
    margin: auto;
    height: 30vw;
    width: 70vw;
    margin: auto;
}

.text-con{
    display: flex;
    height: 25vw;
    width: 35vw;
    margin: auto;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.abt-title{
    display: flex;
    font-size: 6vw;
    color: white;
    text-shadow: 0 0 20px rgb(255, 255, 255, 0.2),
    0 0 40px black;
    opacity: 0;

    transition: opacity 1s ease-in-out;

}

.abt-title.loaded{
    opacity: 1;
}

.abt-para{
    font-family: "ztnature-thin";
    font-size: 1.3vw;
    color: white;
    margin-left: 10px;
    text-shadow: 0 0 5px rgb(0, 0, 0);
    opacity: 0;
    transition: opacity 1s ease-in-out;
    text-align: center;
}

.abt-para.loaded{
    opacity: 1;
}

.link{
    color: #7151A9;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.link:hover{
    color: white;
}