@keyframes sheen {
    100% {
        transform: rotateZ(60deg) translate(1em, -9em);
    }
}

body {
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    background-color: #f4f4f4;
    padding-bottom: 20px;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: #0e0e0e;
    /* Dark background for better contrast */
}

.content {
    
    display: flex;
    justify-content: start;
    align-items: center;
    position: relative;
    flex-direction: column;
    color: white;
    margin-top: 2%;
}

.about {
    margin-top: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.abttitle {
    display: flex;
    align-items: center;
    gap: 20px;
}

.titleimage {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    background-color: rgba(56, 58, 59, 0.493);
    border-radius: 50%;
}

.titletext {
    font-size: 4em;
    color: white;
}

.abtcontent {
    text-align: justify;
    user-select: none;
    font-size: 1.5em;
}

.container {
    width: 80%;
    background: rgba(77, 76, 76, 0.274);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    margin-top: 20px;
}

.spacer {
    flex-grow: 1;
}

.report {
    margin-bottom: 40px;
}

.reporttitle {
    font-size: 2em;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 100%;
}

.reportbox {
    max-width: 97%;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5em;
    padding: 5px;
    outline: none;
    border: none;
    background-color: #2c2d2e83;
    border-radius: 10px;
    color: white;
}

.input{
    padding: 10px;
    height: 40px;
}

.textarea{
    padding: 10px;
    height: 150px;
}

.reportbox:hover {
    background-color: #2c2d2ee1;
}

.reportbox:focus {
    background-color: #000000;
}

.labeltitles {
    font-weight: bold;
    font-size: 1.5em;
}

.sheen-btn {
    all: unset;
    position: relative;
    padding: 10px 20px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: white;
    background-color: rgba(0, 0, 0, 0.178);
    border: 2px solid #3c3c3d;
    border-radius: 6px;
    box-shadow: 0 0 10px #4f4f50;
    cursor: pointer;
    overflow: hidden;
}

.sheen-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    bottom: -50%;
    left: -50%;
    background: linear-gradient(to bottom,
            hsl(240, 1%, 35%),
            hsla(240, 2%, 27%, 0.5) 50%,
            hsl(210, 2%, 24%));
    transform: rotateZ(60deg) translate(-5em, 7.5em);
    animation: sheen 1s infinite;
}

.socialbar {
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sheen-btn:hover {
    background-color: #3c3c3d4b;
}

.sheen-btn:active {
    background-color: #000000;
}

.social-icons a {
    margin: 20px;
    display: inline-block;
}


@media (max-width:767px) {
    .abttitle {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .titleimage {
        width: 100px;
        height: 100px;
    }

    .titletext {
        font-size: 1.7em;
    }

    .abtcontent {
        text-align: justify;
        font-size: 1em;
    }

    .reporttitle {
        font-size: 1.5em;
    }

    .labeltitles {
        font-size: 1.1em;
    }

    .reportbox {
        font-size: 1em;
    }

    .submitbut {
        font-size: 1em;
    }

        .input {
            padding: 10px;
            height: 20px;
        }
    
        .textarea {
            padding: 10px;
            height: 100px;
        }
}

.wrapper {
    display: flex;
    gap: 50px;
}

/* Common styles for icons */
.wrapper i {
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, text-shadow 0.2s ease-in-out;
    text-shadow: 0px 7px 10px rgba(0, 0, 0, 0.4);
}

/* Instagram */
.wrapper i.fa-instagram {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.2s ease-in-out;
}

.wrapper i.fa-instagram:hover {
    transform: translateY(-8px);
}

/* YouTube */
.wrapper i.fa-youtube-square {
    color: #FF0000;
}

.wrapper i.fa-youtube-square:hover {
    transform: translateY(-8px);
}

/* GitHub */
.wrapper i.fa-github-square {
    color: #5e5e5e;
}

.wrapper i.fa-github-square:hover {
    transform: translateY(-8px);
}
