@import url(https://fonts.googleapis.com/css?family=Share+Tech);

body {
   background-color: #000;
}

h1 {
   font-family: 'Share Tech', sans-serif;
   animation: pulse .9s infinite;
   color: #00ebd4;
}

#identity-results, #resume, #loading-alpha-div, #loadingH1, #loadingMessage2, #message {
   margin-top: 20px;
   font-family: 'Share Tech', sans-serif;
   font-weight: 900;
   font-size: 24px;
   color: #00ebd4;
   animation: pulse .9s infinite;
}

i {
   font-size: 24px;
   color: #00ebd4;
   animation: pulse .9s infinite;
}

.block {
   width: 50px;
   height: 50px;
   background-color: #000;
}

@keyframes pulse {
   0% {
    opacity: 1;
  }
   50% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}

.cursor:after {
 content:"_";
 opacity: 0;
 animation: cursor 1s infinite;
}
.sign:before{
   content: "> ";
}
@keyframes cursor {
 0% {
  opacity: 0;
 }
 40% {
  opacity: 0;
 }
 50% {
  opacity: 1;
 }
 90% {
  opacity: 1;
 }
 100% {
  opacity: 0;
 }
}

#loading-alpha-div, .img-div{
   display: none;
}

img {
   margin: 50px 0;
   animation: pulse .9s infinite;
}

#loadingMessage2 {
   display: none;
}

.sub-item {
   margin-top: 20px;
   margin-left: 40px;
}

.inline {
   display: inline;
   margin-left: 10px;
}

.small-container {
    position: relative;
    top: 0;
    max-width: 100%;
    margin: 0;
    padding: 14px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: transparent;
    opacity: 0;
    transition: opacity 3s ease-in-out;
    color: #FFF;
}

.small-container h3, .small-container p {
    color: #FFF;
}
.thumbnail {
    width: 75%;
    height: auto;
    border-radius: 5px;
}
.app-description h3, .app-description p {
    color: #FFF;
    text-align: center;
}

.hidden {
    display: none;
}

.container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.main-content {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.resume-container {
    flex: 0 0 75%;
}

.projects-container {
    flex: 0 0 25%;
}

.projects-container h3 {
    text-align: center;
    color: #00ebd4;
}

.projects-list {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     flex-direction: column;
}

.project-item {
    flex: 1; /* Ensure each project item spans full width */
    margin: 10px; /* Add margin for spacing */
    text-align: center;
    border: 1px solid white;
}

.project-item a {
    color: white;
    text-decoration: none;
}

/* Media Query for mobile devices */
@media (max-width: 768px) {

#identity-results, #resume, #loading-alpha-div, #loadingH1, #loadingMessage2, #message {
    margin-top: 20px;
    font-family: 'Share Tech', sans-serif;
    font-weight: 900;
    font-size: 12px;
    color: #00ebd4;
    animation: pulse .9s infinite;
}
    .projects-container {
        flex: 0 0 100% !important;
        width: 100% !important;
    }

    .resume-container {
        flex: 0 0 100% !important;
        width: 100% !important;
    }

    .projects-list {
        flex-direction: column;
        align-items: center;
    }

    .project-item {
        flex: 0 0 100%;
    }
}

/* Remove underline from the email link and inherit color */
a#alias-link {
    text-decoration: none;
    color: inherit;
}

a#alias-link h3 {
    display: inline;
}
