@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

body{
    margin: 0px;
    font-family: 'Poppins', sans-serif;
}

.content h1 span{
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #b1afaf;
}

.content h1{
    text-align: center;
    font-size: 3.3em; 
    color: #b1afaf;
    
}

.title #h1Animation::after {
    content: '';
    opacity: 10%;
    position: absolute;
    top: 50%;
    left: 40%;
    width: 25rem; /* Smaller width for the circle */
    height: 25rem; /* Smaller height for the circle */
    margin-top: -4rem; /* Center vertically relative to the pseudo element's size */
    margin-left: -1rem; /* Center horizontally relative to the pseudo element's size */
    border: 2px solid transparent;
    border-top-color: white; /* White line at the top */
    border-radius: 50%; /* Makes it a perfect circle */
    z-index: -99; /* Slightly higher z-index to be on top of the circle */
    animation: rotate 5s linear infinite; /* Infinite rotation animation */
}

#subtitle{
    font-size: 0.3em;
    color: white
}

.title .content::after {
    content: '';
    opacity: 10%;
    position: absolute;
    top: 50%;
    left: 60%;
    width: 25rem; /* Smaller width for the circle */
    height: 25rem; /* Smaller height for the circle */
    margin-top: -4rem; /* Center vertically relative to the pseudo element's size */
    margin-left: -1rem; /* Center horizontally relative to the pseudo element's size */
    border: 2px solid transparent;
    border-top-color: white; /* White line at the top */
    border-radius: 50%; /* Makes it a perfect circle */
    z-index: -99; /* Slightly higher z-index to be on top of the circle */
    animation: rotate 5s linear infinite; /* Infinite rotation animation */
}

@keyframes rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

nav{
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo{
    max-width: 100px;
}

.nav-links{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.link a{
    position: relative;
    padding-bottom: 0.75rem;
    color: #fff;
}

.link a::after{
    content: "";
    position: absolute;
    height: 2px;
    width: 0;
    bottom: 0;
    left: 0;
    background-color: #e27005;
    transition: all 0.3s ease;
}

.link a:hover::after{
    width: 70%;
}

.issue-container{
    background-color: rgba(177, 165, 155, 0.582);
    backdrop-filter: blur(75px);
    width: 75%; 
    margin: auto; 
    height: 100%;
    text-align: start;
    margin-bottom: 30px;
    border-radius: 30px;
    color: white;      
}

.container .issue-step{
    font-size: 1.3em;
    display: flex;
    flex-direction: column;
    padding: 20px;
    width: 90%;
    margin: auto;
    height: auto;
    margin-top: 0%;
    margin-left: 5%;
    font-weight: bold;
    color: white;
}

.container .issue-step span{
    color: orangered;
}

.container .text .details{
    font-size: 0.8em;
    margin-left: 7%;
    padding: 15px;
    font-weight: normal;
    color: white;
}

img {
    border-radius: 4%;
}

.container .issue-img #java{
    width: 50%;
}

.container .issue-img #jar{
    width: 40%;
}

.container .issue-img #launcher{
    width: 70%;
}

.container .issue-img #credential{
    width: 70%;
    height: 50%;
}

.container .issue-img #play{
    width: 70%;
}

.container .issue-img #join{
    width: 70%;
    height: 50%;
}

.issue-container #info {
    display: flex;
    text-align: center;
    color: black;
}

.issue-container #rpe-explain{
    font-size: 1.2em;
    color: darkgrey;
}

.container .issue-img #mainMenu{
    width: 70%;
    height: 50%;
}

.container .issue-img #clickResourcePack{
    width: 70%;
    height: 50%;
}

.container .issue-img #list{
    width: 70%;
    height: 10%;
}

.container .issue-img #loading{
    width: 70%;
    height: 50%;
}

.container .issue-img #winR{
    width: 50%;
    height: 50%;
}

.container .issue-img #appdata{
    width: 70%;
    height: 50%;
}

.container .issue-img #file{
    width: 70%;
}

.container .issue-img #desktop{
    width: 70%;
    height: 5%;
}

.container .issue-img #launcherLoading{
    width: 70%;
    height: 50%;
}

.container .issue-img #gear{
    width: 70%;
    height: 50%;
}

.container .issue-img #ram{
    width: 70%;
    height: 50%;
}

@media only screen and (max-width: 600px) {
     .issue-step .issue-image img{
        max-width: 400px;
    }

    .container .issue-step{
        font-size: 1em;
    }

    .container .issue-step .details{
        font-size: 0.6em;
    }
}