@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Poppins;
}
body
{
    background-image: url(img/E7Naj5o.jpg);
    background-size: 2000px;
}
header
{
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 200px;
    transition: 0.5s ease;
}
header .brand
{
    color: mediumvioletred;
    font-size: 1.6em;
    font-weight: 800;
    text-decoration: none;
}
header .navigation
{
    position: relative;
}
header .navigation .navigation-items a
{
    position: relative;
    color: #fff;
    font-size: 1em;
    font-weight: 600;
    text-decoration: none;
    margin-left: 40px;
    transition: 0.3s ease;
}

header .navigation .navigation-items a::before
{
    content: '';
    position: absolute;
    background: rgb(255, 0, 255);
    width: 0;
    height: 2.9px;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}
header .navigation .navigation-items a:hover:before
{
    width: 100%;
}
.main h1
{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%)
}
.main h1
{
    color: rgb(255, 174, 0);
    font-size: 10em;
    text-shadow: -1px 1px 13px rgba(0,0,0,0.4);
    cursor: pointer;
    transition: 0.5s;
    animation-name: omg;
    opacity: 0;
    animation-duration: 4s;
}
.main h1:hover
{
    font-size: 10.3em;
}
section
{
    padding: 100px 400px;
}
.home
{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    animation-name: no;
    animation-duration: 4s;
}
.p h1
{
    font-size: 9em;
    color: aqua;
    padding: -10px 10px;
    line-height: 1;
    text-shadow: 0px 0px 13px rgba(0,0,0,0.4);
}
.p h1 span
{
    color: rgb(251, 255, 0);
}
.p p
{
    font-size: 1.5em;
    font-weight: 900;
    color: rgb(255, 255, 255);
    padding: 10px;
}
.p button
{
    background: hotpink;
    border: none;
    width: 200px;
    height: 55px;
    border-radius: 20px;
    color: white;
    font-size: 20px;
    margin-top: 20px;
    transform: translate(-3px, 10px);
    margin: 10px 10px;
    margin-left: 5px;
    transition: .3s;
}
.p .oh 
{
    background: rgb(255, 0, 140);
}
.p button:hover
{
    width: 205px;
    height: 60px;
}
.i img
{
    max-width: 370px;
    margin-left: 750px;
    margin-top: -360px;
    
}
@keyframes omg
{
    0% {
        opacity: 0;
        transform: translate(-50%, -50%)
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        top: 1px;
    }

}
@keyframes no
{
    0% {
        opacity: 0;
        margin-left: -3000;
    }
}
@media screen and (max-width: 1440px) {
    section
{
    padding: 99px 200px;
}
}
