@font-face {
    font-family: 'changuttan';
    /* Name your font family */
    src: url('../../assets/Changeling_Neo/Changeling\ Neo\ Regular.otf');
    /* Locate the .ttf file within your directory*/
}
* {
    padding: 0;
    margin: 0;
    font-family: 'changuttan';
}

#workshopbody {
    position: relative;
    overflow: hidden;
    background-image: url('../../assets/Workshops.webp');
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

#hacktitle {
    position: absolute;
    top: 30%;
    right: 35%;
    width: 50%;
}

#hacktext {
    position: absolute;
    top: 40%;
    left: 15%;
    width: 40%;
    font-size: 20px;
    font-family: 'changuttan';
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 2px;
    line-height: 1.2;
}

#hackbutton {
    position: absolute;
    height: 75px;
    width: 175px;
    top: 70%;
    left: 15%;
    border: none;
    background-color: rgb(0, 0, 0);
    color: white;
    font-size: 22px;
    border-radius: 0px 30px 0px 30px;
    text-align: center;
    font-family: 'changuttan';
}

#hackbutton:hover {
    background-color: rgba(255, 255, 255);
    color: black;
    transition: all 0.5s ease;
}

#yudham {
    position: absolute;
    height: 600px;
    transition: all 0.2s;
    filter: drop-shadow(0px 0px 10px black);
}

#hackcontainer {
    position: absolute;
    top: 25%;
    left: 70%;
}

#titletext {
    position: absolute;
    top: 22%;
    left: 13%;
    font-size: 150px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    #workshopbody {
        background-size: contain;
    }

    #hacktitle {
        top: 25%;
        right: 30%;
        width: 60%;
    }

    #hacktext {
        top: 35%;
        left: 10%;
        width: 50%;
        font-size: 18px;
    }

    #hackbutton {
        top: 65%;
        left: 10%;
        height: 70px;
        width: 160px;
        font-size: 20px;
    }

    #titletext {
        top: 20%;
        left: 10%;
        font-size: 120px;
    }
}

@media (max-width: 768px) {
    #workshopbody {
        background-size: cover;
    }

    #hacktitle {
        top: 20%;
        right: 20%;
        width: 70%;
    }

    #hacktext {
        top: 30%;
        left: 5%;
        width: 60%;
        font-size: 16px;
    }

    #hackbutton {
        top: 60%;
        left: 5%;
        height: 65px;
        width: 150px;
        font-size: 18px;
    }

    #titletext {
        top: 18%;
        left: 5%;
        font-size: 100px;
    }
}

@media (max-width: 480px) {
    #workshopbody {
        background-size: contain;
    }

    #hacktitle {
        top: 15%;
        right: 10%;
        width: 80%;
    }

    #hacktext {
        top: 25%;
        left: 5%;
        width: 70%;
        font-size: 14px;
    }

    #hackbutton {
        top: 55%;
        left: 5%;
        height: 60px;
        width: 140px;
        font-size: 16px;
    }

    #titletext {
        top: 15%;
        left: 5%;
        font-size: 80px;
    }
}