
html {
    scroll-behavior: smooth;
}

main {
    background: linear-gradient(#14273C, #03091e);
    font-weight: 700;
    color: #fff;
    font-size: 22px;
    overflow: hidden;
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section-content h3 {
    color: #52f7ff;
}

.hero-section-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section-image img{
    width: 100%;
}

.paddind-custom {
    padding-top: 50px;
    padding-bottom: 20px;
}

.hero-section-content hr {
    border: 1px solid;
}

.next-button {
    position: relative;
    bottom: 5%;
    width: 100%;
    display: flex;
    justify-content: center;
}

.next-button a{
    text-decoration: none;
    color: #fff;
    font-size: 40px;
    padding: 0 30px;
}

.next-button a:hover{
    transform: scale(1.2);
}