* {
    margin: 0;
    padding: 0;
}

.navbar {
    background-color: #000000;
    color: white;
    height: 60px;
    opacity: 0.8;
}

.logo {
    float: left;
    width: 80px;
    margin: 15px 0 0 80px;
    cursor: pointer;
}

.line {
    float: left;
    margin: 10px 50px 0 50px;
    height: 35px;
    border-left: 1px #FCFCFC solid;
}

.list {
    float: left;
    list-style: none;
    margin-top: 18px;
}

.list-item {
    float: left;
    margin-right: 50px;
    font-family: "Poppins", Arial;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}

.list-item:first-child {
    margin-right: 66px;
}

.list-item:first-child::after {
    content: "";
    position: absolute;
    display: inline-block;
    border: solid #FCFCFC;
    border-width: 0 2px 2px 0;
    padding: 3px;
    margin-left: 10px;
    margin-top: 4px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.button-small {
    float: right;
    margin: 12px 80px 0 0;
    padding: 6px 20px;
    border-radius: 6px;
    font-family: "Poppins", Arial;
    font-weight: 500;
    font-size: 14px;
    color: #FCFCFC;
    background-color: #BA0CC5;
    border: none;
    cursor: pointer;
}

.hero {
    width: 600px;
    margin: 100px auto;
    text-align: center;
}

.hero-heading {
    font-size: 55px;
    color: #FCFCFC;
    font-family: "Montserrat", Arial;
}

.hero-description {
    color: #FCFCFC;
    font-size: 21px;
    font-family: "Poppins", Arial;
    margin-bottom: 30px;
}

.button-large {
    padding: 12px 14px;
    border-radius: 6px;
    color: #FCFCFC;
    background-color: #BA0CC5;
    border: none;
    font-size: 20px;
    font-family: "Montserrat", Arial;
    cursor: pointer;
}

.container::before {
    content: "";
    background: url("./assets/bg.png") no-repeat;
    background-size: 100%;
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    z-index: -1;
}