*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

@font-face {
    font-family: Tulisans;
    src: url(Tulisans.ttf);
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url(bg.webp) no-repeat;
    background-size: cover;
    background-position: center;

}

.logo{
    font-size: 2em;
    color: white;
    user-select: none;
    font-family: sans-serif;
}

.nav a{
    position: relative;
    font-size: 1.1em;
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin-left: 40px;
    
}

.nav a::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 5px;
    left: 0;
    bottom: -6px;
    transform: scaleX(0);
    transition: transform .5s;
    transform-origin: right;
}

.nav a:hover::after{
    transform-origin: left;
    transform: scaleX(1);
}

.text{
    transition: 0.5s;
    color: white;
    font-size: 1.5em;
    border: white;
    border: solid;
    padding: 10px;
    border-radius: 5px;
    border-width: 2px;
    margin: 20px;
}

.d_widget{
    transition: 0.5s;
    color: white;
    font-size: 1.5em;
    border: white;
    border: solid;
    padding: 10px;
    border-radius: 5px;
    border-width: 4px;
    margin: 20px;
    transform-origin: left;
    transform: scale(0.6);
}

.d_widget:hover{
    color: white;
    font-size: 1.5em;
    border: white;
    border: solid;
    padding: 10px;
    border-radius: 5px;
    border-width: 2px;
    margin: 20px;
    background-color: rgba(255, 255, 255, 0.301);
    transition: 0.5s;
    transform-origin: left;
    transform: scaleX(1);

}

.d_widget_ a{
    text-decoration: none;
    color: white;
}

.d_widget_l{
    transition: 0.5s;
    color: white;
    font-size: 1.5em;
    border: white;
    border: solid;
    padding: 10px;
    border-radius: 5px;
    border-width: 4px;
    margin: 20px;
    transform-origin: right;
    transform: scale(0.6);
}

.d_widget_l:hover{
    color: white;
    font-size: 1.5em;
    border: white;
    border: solid;
    padding: 10px;
    border-radius: 5px;
    border-width: 2px;
    margin: 20px;
    background-color: rgba(255, 255, 255, 0.301);
    transition: 0.5s;
    transform-origin: right;
    transform: scaleX(1);

}

.d_widget_l a{
    text-decoration: none;
    color: white;
}