@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;
}

.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;
    margin: auto;
    align-content: center;
    font-family: "ztnature-thin";
}

.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;
}

.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;
}

.title{
    display: flex;
    position: relative;
    height: 40vh;
    gap: 0;

    z-index: 1;
    align-items: center;
    justify-content: center;
    margin: auto;

    background-image: url('../html/images/background2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    backdrop-filter: blur(4px);
    box-shadow: 0 10px 25px rgb(0, 0, 0, 0.5);
}

.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 1.5s ease-in-out;
}

.overlay.loaded{
    backdrop-filter: blur(5px);
}

.t-text{
    opacity: 0;
    color:white;
    font-size: 4vw;
    text-align: center;
    text-shadow: 0 0px 30px rgb(0, 0, 0, 0.75);
    transition: opacity 1.5s ease-in-out;
}

.t-text.loaded{
    opacity: 1;
}

.para-area1, .para-area3{
    display: flex;
    background-color: white; 
}

.para-area2{
    display: flex;
    background-color: #e8e8fc; 
}

.para-con{
    display: flex;
    width: 80vw;
    margin: 0 auto;
    flex-direction: column;
}

.t1, .t2, .t3{
    height: 4vw;
    font-size: 4vw;
    height: auto;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #7151A9;
}

.d1, .d2, .d3{
    font-family: "creato-reg";
    font-size: 1.3vw;
    margin-bottom: 50px;
    text-align: justify;
}

.tbl1{
    border-radius: 5px;
    border: 3px solid rgb(113, 81, 169);
    box-shadow: 0 0 30px rgb(0, 0, 0, 0.2);
    font-size: 1.5vw;
    background-color: #e8e8fc;
    border-spacing: 0;
}

th, td{
    text-align: center;
    border: 1px solid rgb(55, 10, 109, 0.3);
    gap: 0;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
}

th{
    color: #7151A9;
    background-color: #C7ADFF;
}

td{
    font-size: 0.9vw;
}

tr:nth-child(odd){
    background-color: white;
}

.img{
    border-radius: 5px;
    box-shadow: 0 0 10px rgb(0, 0, 0, 0.3);
    height: 60%;
    width: 60%;
}