#welcome{
    background: #0c1928;
    height: 100%;
}
.welcome_header{
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.welcome_paragraph{
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 30px;
    /* text-align: center; */
}
.welcome_button{
    width: fit-content;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 5px;
    background: transparent;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.welcome_button:hover{
    background: #fff;
    color: #0c1928;
}

@media screen and (max-width: 1236px) {
    #link_welcome{
        display: none;
    }
    .welcome_container{
        width: 80%;
    }
}

@media screen and (max-width: 768px) {
    .welcome_container{
        width: 100%;
    }
}