@font-face {
    font-family: 'Comfortaa';
    src: url(assets/fonts/Comfortaa-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Comfortaa';
    src: url(assets/fonts/Comfortaa-Light.ttf) format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Comfortaa';
    src: url(assets/fonts/Comfortaa-Medium.ttf) format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Comfortaa';
    src: url(assets/fonts/Comfortaa-SemiBold.ttf) format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Comfortaa';
    src: url(assets/fonts/Comfortaa-Bold.ttf) format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'Comfortaa', sans-serif;
    background: hsl(261, 100%, 90%);
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

img {
    max-width: 100%;
}

.contenter {
    display: flex;
    max-height: 100vh;
    max-width: 40vw;
    flex-direction: column;
    align-items: center;
    padding-block: 2.5rem;
}

.smooth-transition {
    transition: max-width 0.25s ease, padding 0.25s ease, opacity 0.5s ease;
    animation: fade-in-anim 1s ease-out forwards;
    will-change: max-width, opacity;
}

.logo {
    display: flex;
    max-width: 100%;
    padding-bottom: 1.75rem;
}

.info-title-1 {
    font-size: 2vw;
    font-weight: 300;
    padding-bottom: 5vw;
    padding-top: 2vw;
    color: #424242;
}

.baklatech-span {
    display: flex;
    flex-direction: row;
    gap: 5vw;
    max-width: 80%;
}

.baklatech-circle {
    display: flex;
    background-color: #424242;
    border-radius: 50%;
    overflow: hidden;
    object-fit: contain;
    box-shadow: 0 4px 8px 2px #00000010;
}

.pulse {
    animation: pulse-anim 3s ease-in-out infinite;
    animation-delay: 0s;
    will-change: transform;
}

.sway-1 {
    animation: sway-anim 4s ease-in-out infinite;
    animation-delay: 0s;
    will-change: transform;
}
.sway-2 {
    animation: sway-anim 4s ease-in-out infinite;
    animation-delay: 1s;
    will-change: transform;
}
.sway-3 {
    animation: sway-anim 4s ease-in-out infinite;
    animation-delay: 2s;
    will-change: transform;
}

@keyframes sway-anim {
    0%, 50% {
        transform: translateY(0) scale(1);
    }
    25% {
        transform: translateY(-0.5rem) scale(1.05);
    }
}

@keyframes pulse-anim {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes fade-in-anim {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 420px) {
    .contenter {
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }
}