body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    font-family: "Roboto Mono", monospace;
}

h1 {
    font-family: "Tiny5", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 60px;
    position: absolute;
    top: 20px;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("gitwall.jpeg");
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    z-index: -1;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
    overflow-y: auto;
    text-align: center;
    color: white;
    overflow: hidden;
}

.text {
    font-weight: 400;
    font-style: italic;
    font-size: 45px;
    margin-bottom: 20px;
    position: absolute;
    top: 210px;
}

.search-box {
    display: flex;
    width: 400px;
    height: 80px;
    background: linear-gradient(to right, rgba(67, 198, 172, 0.4), rgba(25, 54, 84, 0.7));
    border-radius: 10px;
    margin-bottom: 20px;
}

#search-input {
    outline: none;
    flex: 1;
    width: 100%;
    padding: 15px;
    border-radius: 0 20px 20px 0;
    border: none;
    font-size: 32px;
    color: white;
    text-shadow: 0 0 3px black;
    background: none;
}

#search-button {
    padding: 15px 30px;
    border-radius: 20px 0 0 20px;
    border: none;
    background: linear-gradient(to right, rgba(67, 198, 172, 0.3), rgba(25, 54, 84, 0.7));
    background-image: url(search4.png);
    background-size: 90%;
    background-repeat: no-repeat;
    background-position: 6px center;
    cursor: pointer;
    order: -1;
}

#profile-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
}

.profile {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: white;
    width: auto;
    max-width: 80%;
    visibility: visible;
    position: absolute;
    overflow: hidden;
    border: 2px solid transparent;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 0.1);
}

.avatar {
    width: 75px;
    height: 75px;
    border-radius: 100%;
    top: 10px;
    left: 280px; 
 
    position: absolute; 
}

.profile-content {
    max-width: 500px;
    max-height: 350px;
    padding: 20px;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: left;
    overflow-y: hidden;
    flex: 1; 
}

.profile h2 {
    margin-bottom: 10px;
    font-size: 18px;
}

.profile p {
    margin: 5px 0;
    font-size: 18px;
}

.profile a,
.btn {
    margin-top: 0px;
    padding: 5x 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

#result {
    position: absolute;
    top: 460px;
}
