.body-container {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    font-family: 'Inter', sans-serif;
}

.title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background: #121212;
}

.title-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;

    -webkit-animation: pulse 1.5s infinite ease-in-out;
    -moz-animation: pulse 1.5s infinite ease-in-out;
    animation: pulse 1.5s infinite ease-in-out;

    -webkit-transform-origin: center center;
    transform-origin: center center;
}

.title-content img {
    width: 40px;
    height: 40px;
}

.title-content .title-h1 {
    color: #ffffff;
    font-size: 2rem;
    margin: 0;
}

@-webkit-keyframes pulse {

    0%,
    100% {
        -webkit-transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.1);
    }
}

@-moz-keyframes pulse {

    0%,
    100% {
        -moz-transform: scale(1);
    }

    50% {
        -moz-transform: scale(1.1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}