body{
    display:flex;
    align-items: center;
    justify-content: center;
    padding-left: 20%;
    padding-right: 20%;
    
  
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;

    &::before{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url(pic/bg\ home.png);
        background-size: cover;
        opacity: 0.3;
}
    background-color: rgb(0, 0, 0);
}

@font-face {
    font-family: 'victormono';
    src: url("font/TTF/VictorMono-Regular.ttf");
}


.logo{
    display: flex;
    align-items: center;
    padding-right: 5%;
}

.headline{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 36px;
    font-weight: bold;
    line-height: 0.01;
}

.bodytext{
    display: flex;
    align-items: center;
    position: relative;
    text-align: left;
    font-family: victormono;
    font-size: 10pt;
    line-height: 1.5;
    word-spacing: 1pt;
    color: white;
}

.teks{
    text-align: left;
}


.link{
    text-align: left;
    font-family: victormono;
    font-size: 10pt;
    line-height: 1.9;
    word-spacing: 1pt;
    color: white; 
}

a{
       color: rgb(255, 255, 255);
       transition: 0.3s;
 }

a:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

/* Mobile Design */
@media (max-width: 900px){
    body{
        display:relative;
        align-items: center;
        justify-content: center;
        padding-left: 20%;
        padding-right: 20%;
        padding-top: 20%;
        height: 100vh;
      
        position: absolute;
        right: 0;
        left: 0;
        top: 0;
        bottom: 0;
        margin: auto;
    
        &::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url(pic/bg\ home.png);
            background-size: cover;
            background-position: center;
            opacity: 0.3;
    }
        background-color: rgb(0, 0, 0);
    }

    .logo{
        align-items: center;
        padding-right: 5%;
    }

    .bodytext{
        display: block;
        align-items: center;
        position: relative;
        text-align: left;
        font-family: victormono;
        font-size: 10pt;
        line-height: 1.5;
        word-spacing: 1pt;
        color: rgb(255, 255, 255);
    }
}