@import url(mainStyle.css);
.welcome-page {
    height: 92vh;
    width: 100%;
    overflow: hidden;
}

@media (max-width:480px) {
    .welcome-page {
        height: 100vh;
    }
}

.bg-main-color{
    background-color: white;
    font-size: larger;
}

.color-item{
    background-color: #ffffff;
    color: var(--secondary-color-one);
    font-weight: 800;
    margin-bottom: 1px;
    border-bottom: 1px solid var(--secondary-color-one);
    border-radius: 0px;
}

.color-item:hover{
    transition: 0.5s;
    color: white;
    border-radius: var(--radius-bord-2);
    font-weight: 800;
    background-color: var(--secondary-color-one);
}

.welcome-page-img {
    max-width: 100%;
    width: auto;
    height: 100%;
    display: flex;
}