
@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, 166, 0);
    font-size: 15em;
    text-shadow: -1px 1px 13px rgba(0,0,0,0.4);
    cursor: pointer;
    animation-name: hello;
    animation-duration: 3s;
    transition: 0.5s;
}
.main h1:hover
{
    font-size: 15.3em;
}
@keyframes hello
{
    0% { 
        opacity: 0;
        transform: translate(-50%, -70%)
    }
}