*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    background-color: rgb(2, 2, 63);
    height: 100vh;
    overflow: hidden;
}

.first-line{
    width: 100%;
    height: 50px;
    text-align: center;
    background-color: rgb(116, 15, 11);
    padding: 15px;
    margin-bottom: 30px;
    z-index: 999;
    animation-name: top;
    animation-duration: 2s;
    color: white;
}

header{
    display: flex;
    justify-content: space-around;
    align-items: center;
    animation-name: top;
    animation-duration: 3s;
    z-index: -1;
}

h1{
    color: white;
}

@keyframes top{
    0%{
        transform: translateY(-100px);
    }
}

nav{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    

}

a{
    text-decoration: none;
    color: white;
    cursor: pointer;
    color: white;
}

.btn1{
    border: none;
    padding: 10px 12px;
    border-radius: 40px;
    border: solid 1px white;
    background-color: rgb(2, 2, 63);
    cursor: pointer; color: white;
}

section{
    margin-top: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.Unstoppable{
width: 500px;
animation-name: left;
animation-duration: 3s;
color: white;
}

@keyframes left {
    0%{
        transform: translateX(-700px);
    }
}

h2{
    font-size: 2.9rem;
}

.btn2{
    border: none;
    padding: 13px 18px;
    border-radius: 40px;
    background-color: rgb(209, 212, 211);
    cursor: pointer;
    margin-top: 50px;
}

.imgdiv{
    animation-name: right;
    animation-duration: 3s;
}

@keyframes right {
    0%{
        transform: translateX(700px);

    }
}
img{
    
    width: 500px;
    animation-name: rotat;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes rotat {
    0%{
        transform: rotate(360deg);
    }
}