@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Poppins;
}
body
{
    background-image: url(img/Beautiful\ Landscape\ \(1920x1080\).png);
    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 300px;
    transition: 0.5s ease;
}
header .brand
{
    color: rgb(255, 255, 255);
    font-size: 2em;
    font-weight: 800;
    text-decoration: none;
}
header .navigation
{
    position: relative;
}
header .navigation .navigation-items a
{
    position: relative;
    color: rgb(255, 251, 0);
    font-size: 1.2em;
    font-weight: 600;
    text-decoration: none;
    margin-left: 40px;
    transition: 0.3s ease;
}

header .navigation .navigation-items a::before
{
    content: '';
    position: absolute;
    background: rgb(217, 255, 0);
    width: 0;
    height: 2.9px;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}
header .navigation .navigation-items a:hover:before
{
    width: 100%;
}
h1
{
    text-align: center;
    margin-top: 280px;
    font-size: 20em;
    color: rgb(255, 0, 128);
    text-shadow: 0px 6px 16px rgba(0,0,0,0.3);
    font-family: 'Righteous', cursive;
    transition: .4s;
}
h1:hover
{
    font-size: 21em;
}