@import url("C:\Users\leoni\Downloads\Benzin-Medium\style.css");

*{
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Benzin', sans-serif;
    font-weight: 400;
    color: #fff;
    font-size: 18px;
}

a{
    text-decoration: none;
}

img{
    max-width: 100%;
}

.wrapper{
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(0,0,0,1) 35%, rgba(0,0,0,1) 100%);
    width: 100%;
}

.container {
    width: 1400px;
    margin: 0 auto;
}

header {
    padding: 50px 0;
}

header .logo {
    text-transform: uppercase;
    font-size: 29px;
    font-weight: 800;
}

header nav {
    float: right;
    width: 50%;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    z-index: 2;
    position: relative;
}

header nav ul li {
    display: inline-block;
}

header nav ul li a {
    color: #fff;
}

header nav ul li:not(.active):not(.btn) a:hover {
    border-bottom: 5px solid #0000CD;
}

header nav ul li.btn a {
    background: #0000CD;
    padding: 9px 17px;
    border-radius: 5px;
    transition: all 500ms ease;
}

header nav ul li.btn a:hover {
    background: #000086;
}

header nav ul li.active::after {
    content: '';
    display: block;
    width: 40px;
    height: 5px;
    background: #0000CD;
    border-radius: 10px;
    position: relative;
    top: 5px;
    left: -15px;
}

.hero {
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}

.hero--info {
    width: 530px;
    padding-top: 50px;
}

.hero--info h2 {
    color: #e3e3e3;
    font-size: 20px;
    font-weight: 600;
}

.hero--info h1 {
    font-size: 50px;
    font-weight: 900;
}

.hero--info p {
    font-weight: 500;
    line-height: 170%;
    margin: 30px 0;
}

.hero--info .btn {
    background: #000086;
    color: #fff;
    border-radius: 50px;
    padding: 15px 30px;
    border: 0;
    transition: all 500ms ease;
}
.hero--info .btn:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.hero img {
    position: absolute; 
    top: -15px;
    right: 0;
}

/* seccsia VENOM */
.trending {
    padding-top: 50px;
}

.trending h3 {
    font-weight: 600;
    font-size: 31px;   
}

.trending .taptovenom {
    color: aqua;
    background: #000086;
    border-radius: 5px;
    padding: 12px 23px;
    float: right;
    display: block;
    transition: all 500ms ease;
}

.trending .taptovenom:hover {
    transform: scale(1.1);
}

.trending .venoms {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 50px 0;
}

.trending .venoms span {
    display: block;
    text-align: center;
    margin-top: 20px;
}

.trending .venoms span img {
    position: relative;
    top: 5px;
    margin-right: 7px;
}
