.hero-container {
    height: 90vh;
}

.hero-content {
    position: relative;
    top: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 50px;
    font-weight: 600;
    margin: 0px;
}

.hero-content h2 {
    color: var(--text-grey-color);
    font-size: 20px;
    font-weight: 400;
    margin: 20px 0px 0px 0px;
}

.hero-content a {
    text-decoration: none;
    margin-top: 60px;
}

.hero-content a button {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: var(--blue-color);
    color: var(--cream-color);
    font-size: 18px;
    font-weight: 400;
    width: 250px;
    height: 60px;
    border-radius: 50px;
    border: none;
    transition: 0.3s;
}

.hero-content a button:hover {
    opacity: 0.8;
    transform: translateY(-1px);
    box-shadow: 0 7px 14px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08);
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 37.5px;
    }
    
    .hero-content h2 {
        font-size: 15px;
    }
}