body{
    background-color: rgb(62, 62, 62);
    margin: 50px 0 0 0;
}

.topbar{
    background-color: rgb(53, 58, 52);
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    z-index: 999999;
    border-radius: 0 0 2vb 2vb;
    border-bottom: 1px rgb(0, 174, 255) solid;
    display: flex;
}

.topbarlink{
    color: white;
    text-decoration: none;
    font-size: 20px;
    margin-left: 20px;
    margin-top: 10px;
}

.search{
    margin-left: auto;
    margin-right: 20px;
    margin-top: 10px;
    height: 30px;
    width: 200px;
    border-radius: 5px;
    border: none;
    padding-left: 10px;
    color: white;
    background-color: black;
    border: 1px solid rgb(65, 255, 68);
    outline: none;
}

.mainlogo{
    display: flex;
    width: 500px;
    transition: 0.5s;
}
.mainlogo:hover{
    transform: scale(1.1);
    transition: 0.5s;
}

.logosss{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.maintitlebox{
    text-align: center;
    width: 100%;
    color: white;
}

.maintitle{
    font-size: 50px;
    margin-top: 100px;
    margin-bottom: 20px;
    transition: 0.5s;
}
.maintitle:hover{
    color: rgb(0, 174, 255);
    transition: 0.5s;
}