@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;

}



html,
body {
    background-image: url("Background_2.jpg");
    background-size: cover;
    background-position: center;

    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    position: fixed;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.h1txt {
    padding: 1px;
    font-size: 44px;
    animation: anim 20s;
    animation-fill-mode: forwards;
    color: white;
}

.LOGO {
    width: 124px;
    height: 140px;
}

.btn {
    font-size: 20px;
}

@keyframes anim {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.25);
    }
}

@media (max-width: 375px) {
    h1txt {
        font-size: 2rem;
    }
}