body{
    font-family: "Ubuntu", serif;
    font-weight: 400;
    font-style: normal;
    background-color: #16191E;
    color: #E18B35;
}

#xdd{
	max-height: 25px;
	padding-left: 10px;
	width: auto;
}



.title{
    font-size: 25px;
	letter-spacing: -0.025em;
    text-align: center;
	font-weight: 600;
}

#welcome-text{
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
}

#dynamicText {
    color: #00ff7380;
    font-weight: bold;
}

.cursor {
    font-weight: bold;
    color: #E18B35;
    animation: blink 0.7s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.list {
	color: #EAE0A8;
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center-align the list within the container */
    padding: 0;
    margin: 0;
    list-style: none; /* Remove default styles */
}

li {
    list-style: disc; /* Add bullets */
    list-style-position: inside; /* Ensure bullet is inside the container */
    margin-left: 0; /* Remove unnecessary margin */
    text-align: center; /* Align text to the left of the bullet */
    width: 100%; /* Allow text to wrap neatly */
    display: list-item; /* Restore list-item behavior for bullets */
}

.about-container{
    font-size: 20px;
    background-color: #1f2329;
    color: #E18B35;
    margin: auto;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    align-self: center;
}

#project-title{
    font-size: 25px;
    text-align: center;
    margin-top: 5px;
}

.projects-container{
    font-size: 20px;
    background-color: #1f2329;
    color: #E18B35;
    margin: auto;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    max-width: 600px;
}

.me-image{
    border-radius: 50%;
    border: #000000 3px solid;
    width: 120px;
    height: 120px;
    margin: auto;
    display: block;
}

.links{
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin-top: 20px;
    gap: 30px;
}

.links img{
    max-width: 40px;
}

#spotify{ /* https://codepen.io/sosuke/pen/Pjoqqp */
    filter: invert(56%) sepia(86%) saturate(431%) hue-rotate(89deg) brightness(86%) contrast(91%);
}

#instagram{
    filter: invert(51%) sepia(28%) saturate(5288%) hue-rotate(336deg) brightness(99%) contrast(94%);
}

#tiktok{
    filter: invert(94%) sepia(15%) saturate(5377%) hue-rotate(109deg) brightness(94%) contrast(102%);
}

#paypal{
    filter: invert(38%) sepia(98%) saturate(731%) hue-rotate(162deg) brightness(103%) contrast(105%);
}

#github{
    filter: invert(14%) sepia(24%) saturate(414%) hue-rotate(169deg) brightness(91%) contrast(85%);
}

.achievements{
    color: #EAE0A8;
}

a{
    text-shadow:1px 1px 10px #ffffff1e, 1px 1px 10px #ffffff1f;
    color: #00ff7380;
    text-decoration: none;
}

.hvr-shrink {
    display: inline-block;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
  }
  .hvr-shrink:hover, .hvr-shrink:focus, .hvr-shrink:active {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

.discord-embed{
    padding-top: 10px;
    align-items: center;
    border-radius: 10px;
}









/* tohle jsem si nasel */
  
  /* DEMO-SPECIFIC STYLES */
  .typewriter h1 {
    color: #fff;
    font-size: 1.3em;
    text-align: center;
    font-family: monospace;
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    /*border-right: .13em solid orange; /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    letter-spacing: .09em; /* Adjust as needed */
    max-width: 610px;
    text-shadow: 1px 1px 5px rgba(172, 172, 172, 0.788);
    animation: 
      typing 3.5s steps(90, end),
      blink-caret .7s step-end infinite;
  }
  
  /* The typing effect */
  /*@keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }
  
  /* The typewriter cursor effect 
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: orange }
  }*/

@media screen and (max-width: 640px) {
    li {
        text-align: center; 
    }
	.typewriter h1{
		font-size: 0.85em;
		letter-spacing: .05em;
	}
}











.fpv-container, .fpv-container2, .fpv-container3 {
    font-size: 18px;
    background-color: #1f2329;
    color: #E18B35;
    margin: auto;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    max-width: 95%; /* Adjusts to smaller screens */
}

/* Responsive Images */
.fpv-image, .fpv-image2 {
    border-radius: 10px;
    width: 100%; /* Makes images responsive */
    height: auto;
    margin: auto;
    display: block;
    margin-bottom: 10px;
    margin-top: 20px;
}

/* Responsive Video */
.fpv-iframe {
    border-radius: 10px;
    width: 100%; /* Video adapts to screen size */
    height: auto; /* Maintains aspect ratio */
    aspect-ratio: 16 / 9; /* Ensures proper proportions */
}

/* Home Button */
.home-button {
    font-size: 20px;
    text-align: center;
    padding-bottom: 20px;
}

.home-button a {
    display: inline-block;
    text-decoration: none;
    color: #E18B35;
    background-color: #1f2329;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}

.home-button a:hover {
    transform: scale(1.1);
}

/* Media Query for Smaller Screens */
@media screen and (max-width: 600px) {
    .fpv-container, .fpv-container2, .fpv-container3 {
        font-size: 16px;
        padding: 10px;
    }

    .home-button {
        font-size: 16px;
    }
}


.mail{
	padding-top:15px;
	text-align: center;
	justify-content:center;
	font-size: 14px;
	color: #3d4552;
}