
<style>
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/variable/pretendardvariable.css');
.animated-title {
font-size: 115px;
font-family: 'Pretendard', sans-serif;
font-weight: 900;
position: relative;
width: 100%;
height: 120px;
padding: 150px 0;
overflow-x: hidden;
overflow-y: hidden;
background: transparent;
text-align: center;
line-height: 1;
color: white;
}
.animated-title .track {
position: absolute;
white-space: nowrap;
will-change: transform;
animation: marquee 30s linear infinite;
}
.animated-title .content {
display: inline-block;
}
@keyframes marquee {
from {
transform: translateX(0);
}
to {
transform: translateX(-50%);
}
}
@media (max-width: 768px) {
.animated-title {
font-size: 48px;
height: 80px;
padding: 80px 0;
}
}
</style>
<div class="animated-title">
<div class="track">
<div class="content">
BRANDMEDI BRANDMEDI BRANDMEDI BRANDMEDI BRANDMEDI BRANDMEDI BRANDMEDI
</div>
</div>
</div>