<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>America Shield - Ítalo Alves</title>
<style>
html,
body {
background-color: #0846a8;
height: 100%;
}
.container {
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.circle {
border-radius: 50%;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.outer-lv3 {
background-image: linear-gradient(#870000, #ff4040, #870000);
height: 260px;
width: 260px;
-webkit-animation: turning 8s infinite linear;
animation: turning 8s infinite linear;
}
@-webkit-keyframes turning {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes turning {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.outer-lv2 {
background: #fff;
background-image: linear-gradient(#dbd9d9, #fafafa, #dbd9d9);
height: 210px;
width: 210px;
}
.outer-lv1 {
background-image: linear-gradient(#870000, #ff4040, #870000);
height: 150px;
width: 150px;
}
.center {
background-image: linear-gradient(#0846a8, #277aff, #0846a8);
height: 100px;
width: 100px;
border-radius: 50%;
position: relative;
overflow: hidden;
}
.arrow {
border-top: 35px solid #ede8e8;
border-bottom: 48px solid rgba(0, 0, 0, 0);
border-left: 48px solid transparent;
border-right: 48px solid transparent;
position: absolute;
height: 0;
width: 0;
}
.top {
top: 35px;
left: 2px;
}
.left {
transform: rotate(72deg);
top: 16px;
left: -24px;
}
.right {
transform: rotate(-72deg);
top: 16px;
left: 25px;
}
</style>
</head>
<body>
<div class="container">
<div class="circle outer-lv3">
<div class="circle outer-lv2">
<div class="circle outer-lv1">
<div class="center">
<div class="arrow top"></div>
<div class="arrow left"></div>
<div class="arrow right"></div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>