*{
    box-sizing: border-box;
}

body{
    margin: 0;
    padding: 0;
    background: linear-gradient(90deg, #000, #404040, #b3b3b3);
}

.navbar{
    display: flex;
    position: relative;
    justify-content: space-between;
    background-color: #333;
    align-items: center;
    color: white;
}

.brand-title{
    font-size: 1.5rem;
    margin: .5rem;
}

.navbar-links{
    height: 100%;
}

.navbar-links ul{
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar-links li{
    list-style: none;
}

.navbar-links li a{
    text-decoration: none;
    color: white;
    padding: 1rem;
    display: block;
}

.navbar-links li:hover{
    background-color: #555;
}

img{
    width: 100px;
    height: 60px;
}

.container{
    height: 525px;
    width: 800px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 100px;
    margin-left: 25%;
    word-spacing: 10px;
}

.logo{
    opacity: 0;
    height: 350px;
    width: 600px;
    margin-left: 100px;
    animation: logo 6s linear forwards 3s;
}

h2{
    text-align: center;
    font-size: 30px;
    color: white;
}

.gold{
    color: transparent;
    text-transform: uppercase;
    background: linear-gradient(to right, #462523 0, #cb9b51 22%, #f6e27a 50%, #f6f2c0 50%, #f6e27a 55%, #cb9b51 78%, #462523 100%);
    -webkit-background-clip: text;
}

@keyframes logo{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.first{
    opacity: 0;
    animation: para1 3s linear forwards 9s;
}

.second{
    opacity: 0;
    animation: para2 3s linear forwards 12s;
}

@keyframes para1{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

@keyframes para2{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.footer{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.copyrightText{
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
    margin-top: 618px;
}

.copyrightText a{
    text-decoration: none;
    color: #fff;
}