* {
    box-sizing: border-box;
}

body {
    margin: 0;
    text-align: center;
    padding: 0;
    color: #ffffff;
    background-color: #000000;
    font-family: "Poppins", sans-serif;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100vh;
    overflow: hidden;
}

img {
    height: 22vh;
    margin-bottom: 2%;
}

h1 {
    font-size: 2vh;
}

p {
    font-size: 2vh;
}

.no-select {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }

a:-webkit-any-link {
	text-decoration: none;
	color: #ffffff;
	transition: color 0.4s;
	font-style: normal;
	cursor: pointer;
}

#text , #textc{
    font-size: 4vh;
    margin: 0;
}

#textm {
    font-size: 2vh;
    margin-top: 30px;
}


.image-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: "Poppins", sans-serif;
}

footer {
    text-align: center;
    padding: 10px;
    font-family: "Poppins", sans-serif;
    position: absolute; /* Ensures the footer is at the bottom */
    bottom: 0;
    width: 100%;
}

a:hover{
	color: #ff0000;
}

@media screen and (max-width: 800px) {
    #imag {
        height: 18vh;
    }
    #text {
        font-size: 3vh;
    }
    #textf {
        font-size: 1.7vh;
    }
    #textm {
        font-size: 1.5vh;
    }
    #textc {
        font-size: 1.8vh;
    }
}

.fadeblur {
    animation: blurin 3s ease;
    filter: blur(3px);
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes blurin {
    from {
        filter: blur(3px);
        opacity: 0;
    }
    to {
        filter: blur(0px);
        opacity: 1;
    }
}
