<div class="PBS">
<div class="PBS__Logo">
<div class="Logo__head"></div>
<div class="Logo__tophead"></div>
<div class="Logo__forehead"></div>
<div class="Logo__neck"></div>
<div class="Logo__chin"></div>
<div class="Logo__eye"></div>
<div class="Logo__doubleForehead"></div>
<div class="Logo__doubleChin"></div>
<div class="Logo__doubleNeck"></div>
</div>
<div class="PBS__text"><span class="PBS__letter">P</span><span class="PBS__letter">B</span><span class="PBS__letter">S</span>
<span class="PBS__registration">®</span>
</div>
</div>
@import url('https://fonts.googleapis.com/css?family=Bree+Serif');
body {
background: #00acf1;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow: hidden;
}
.PBS {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.PBS__Logo {
height: 150px;
width: 150px;
border-radius: 100%;
background: black;
position: relative;
z-index: 2;
}
.Logo__head {
height: 60px;
width: 80px;
border-radius: 40px;
background: white;
position: absolute;
left: 30px;
top: 35px;
}
.Logo__head::after {
content: '';
position: absolute;
right: 0;
top: 0;
height: 100%;
width: 55%;
background: black;
}
.Logo__tophead {
height: 60px;
width: 20px;
background: white;
position: absolute;
left: 65px;
top: 35px;
border-bottom-right-radius: 20px;
border-top-right-radius: 10px;
}
.Logo__forehead {
height: 40px;
width: 10px;
background: white;
position: absolute;
left: 84px;
top: 35px;
transform: skewX(23deg);
}
.Logo__chin {
height: 37px;
width: 17px;
background: white;
position: absolute;
left: 77px;
top: 57px;
border-bottom-right-radius: 6px;
}
.Logo__neck {
height: 30px;
width: 30px;
background: white;
position: absolute;
left: 53px;
top: 85px;
}
.Logo__eye {
height: 15px;
width: 15px;
border-radius: 100px;
background: black;
position: absolute;
left: 72px;
top: 55px;
}
.Logo__doubleForehead {
height: 40px;
width: 12px;
background: white;
position: absolute;
left: 106px;
top: 35px;
transform: skewX(23deg);
}
.Logo__doubleChin {
height: 20px;
width: 12px;
background: white;
position: absolute;
left: 106px;
top: 75px;
border-bottom-right-radius: 6px;
}
.Logo__doubleChin::before {
content: '';
position: absolute;
bottom: -2px;
left: -7px;
background-color: white;
height: 10px;
width: 10px;
}
.Logo__doubleChin::after {
content: '';
position: absolute;
bottom: 0px;
left: -7px;
background-color: black;
border-bottom-right-radius: 8px;
height: 10px;
width: 7px;
}
.Logo__doubleNeck {
height: 20px;
width: 12px;
background: white;
position: absolute;
left: 96px;
top: 95px;
}
.PBS__text {
font-family: 'Bree Serif';
font-size: 68px;
color: white;
margin-left: 15px;
white-space: discard;
display: flex;
width: 120px;
height: 92.92px;
animation: 500ms ease-in-out 0ms forwards slideIn;
position: relative;
}
.PBS__letter {
position: absolute;
}
.PBS__letter:nth-child(1) {
left: 80px;
animation: 650ms ease-in-out 200ms forwards pLetter;
}
.PBS__letter:nth-child(2) {
left: 40px;
animation: 500ms ease-in-out 200ms forwards bLetter;
}
.PBS__letter:nth-child(3) {
left: 80px;
}
.PBS__registration {
font-family: 'Arial';
margin-top: 64px;
margin-left: 0px;
display: inline-block;
color: white;
font-size: 10px;
font-weight: 200;
left: 120px;
position: absolute;
}
@keyframes slideIn {
0% {
transform: translateX(-150px);
}
80% {
transform: translateX(10px)
}
100% {
transform: translateX(0px)
}
}
@keyframes pLetter {
0% {
left: 40px;
}
80% {
left: -2px;
}
100% {
left: 0px;
}
}
@keyframes bLetter {
0% {
left: 60px;
}
80% {
left: 38px;
}
100% {
left: 40px;
}
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.