@import url('https://fonts.googleapis.com/css?family=poppins:100,200,300,400,500,600,700,800,900'); 
*{

    font-family:'poppins',sans-serif;
}
h1{
    color: rgb(247, 15, 15);
    margin-left: 30%;
}
.logo{ 
display: flex;
}
.logo h2{
color: rgb(224, 80, 13);
}
#navbar{
    display: flex;
    align-items:center;
	color: rgb(238, 238, 238);
	font-size: 1.25em;
}
ul{
    display: flex;
    gap: 10%;
    list-style: none;

}
body {
/*
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
*/
background: #070a1c;
}
.box{
    margin-left: 10%;
    position: relative;
    width: 400px;
    height: 400px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    overflow: hidden;
}
.box::before{
    content: '';
    position: absolute;
    inset: -10px 140px;
    background: linear-gradient(315deg,#ee0000,#a612b9);
    transition: 0.5s;
    animation: animate 4s linear infinite;
}
.box:hover::before{
    inset: -20px 0px;
}
@keyframes animate
{
    0%{
        transform: rotate(odeg);
    }
    100%
    {
        transform: rotate(360deg);
    }
}
.box::after{
    content: '';
    position: absolute;
    inset: 10px;
    background: #070a1c;
    border-radius: 50%;
    z-index: 1;
}
.content{
    position: absolute;
    inset: 30px;
    border: 10px solid #070a1c;
    z-index: 3;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.content img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    pointer-events: none;
    z-index: 3;
}
.box:hover .content img{
    opacity: 0;
}
.content h2{
    position: relative;
    font-size: 1.5em;
    text-align: center;
    color: antiquewhite;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.content h2 span{
    font-weight: 300;
    font-size: 0.75em;
}
.content a{
    position: relative;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: antiquewhite;
    color: black;
    border-radius: 25px;
    font-weight: 500em;
    font-size: 1.25em;
    text-transform: 0.05em;
    text-decoration: none;
    transition: 0.05s;
}
.content a:hover{
    letter-spacing: 0.25em;
}
.icons {
	margin-top: 30px;
	display:flex;
	justify-content: center;
}

.icons img {
	max-width: 50px;
	height: auto;
	margin: 0 10px;
}
.words{
    width: 90%;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 70%;
    text-align: center;
}
.words span{
    display: inline-block;
    font-family: "poppins",sans-serif;
    font-size: 4vw;
    font-weight: 700;
    color: aqua;
    letter-spacing: 0ch;
    text-shadow: 0 5px 15px rgba(196, 20, 231, 0.5);
    position: relative;
    transform: translatey(-200vh);
    animation: fall 3.5s forwards;
}
@keyframes fall{
    100%{
        transform: translatey(0);
    }
}
.words span:nth-child(2){
    animation-delay: 0.5s;
}
.words span:nth-child(3){
    animation-delay: 1s;
}
.words span:nth-child(4){
    animation-delay: 1.5s;
}
.words span:nth-child(5){
    animation-delay: 2s;
}
.words span:nth-child(6){
    animation-delay: 2.5s;
}
.words span:nth-child(7){
    animation-delay: 3s;
}
.words span:nth-child(8){
    animation-delay: 3.5s;
}
.words span:nth-child(9){
    animation-delay: 4s;
}
.words span:nth-child(10){
    animation-delay: 4.5s;
}
.words span:nth-child(11){
    animation-delay: 5s;
}
.words span:nth-child(12){
    animation-delay: 5.5s;
}
.words span:nth-child(13){
    animation-delay: 6s;
}
.words span:nth-child(14){
    animation-delay: 6.5s;
}
footer {
    background-color: #070a1c;
    color: #fff;
    padding: 20px;
    text-align: center;
}