*{
    box-sizing: border-box;
}

body{
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
    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: 70px;
}

.copyrightText a{
    text-decoration: none;
    color: #fff;
}

.box{
    position: relative;
    margin-left: 543px;
    margin-top: 45px;
    width: 450px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #060c21;
}

.box:before{
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #fff;
    z-index: -1;
}

.box:after{
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: #fff;
    z-index: -2;
    filter: blur(40px);
}
.box:before, .box:after{
    background: linear-gradient(235deg, #89ff00, #060c21, #00bcd4);
}

.content{
    padding: 20px;
    box-sizing: border-box;
    color: #fff;
}

h2{
    margin-top: 20px;
    font-size: 40px;
}

ul{
    list-style-type: disc;
    padding: 60px;
}

ul li{
    font-size: 20px;
    line-height: 200%;
}