*{
    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;
}
.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: 1px;
}

.copyrightText a{
    text-decoration: none;
    color: #fff;
}

h2{
    text-align: center;
    justify-content: center;
    color: #ff9933;
    margin-top: 1px;
    font-size: 40px;
    opacity: 0;
    animation: title 3s linear forwards 2s;
}

@keyframes title{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.container{
    position: relative;
    width: 50%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, ifr));
    grid-gap: 0 30px;
    grid-template-rows: auto;
}

.container .box{
    position: relative;
    width: 90%;
    height: 400px;
    background: #2b2828;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .box:before{
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #fff;
    z-index: -1;
    transform: skew(10deg, 10deg);
    background: linear-gradient(315deg, #89ff00, #00bcd4);
}

.container .box:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

p{
    margin: 20px;
    padding: 0;
    color: white;
    font-size: 20px;
    opacity: 0;
    animation: para 3s linear forwards 5s;
}

@keyframes para{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}

.imp{
    opacity: 0;
    font-weight: 900;
    text-transform: uppercase;
    color: red;
    animation: opacity 5s linear forwards 8s;
}

@keyframes opacity{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}