main {
    background-color: rgba(0, 0, 0, 0.805);
}

main > #welcome_id {
    background-color: rgb(17 24 39 / 0.8);
    backdrop-filter: blur(65px);
    height: 100vh;
    box-sizing: border-box;

    box-sizing: border-box;
    padding-top: 130px;

    display: flex;
    flex-direction: column;
    align-items: center;

    position: relative;
    overflow: hidden;
}

#welcome_id > .welcome_title {
    background-color: rgb(122, 122, 233);
    border-radius: 20px;
    box-sizing: border-box;
    padding: 5px 20px;

    z-index: 1;
}

#welcome_id > h1 {
    text-align: center;
    font-size: clamp(2rem, 5vw, 70px);
    margin: 5px 0px;
    z-index: 1;
}

#welcome_id > .welcome_paragraph {
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    z-index: 1;
    margin: 20px;
}

#welcome_id > a {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    
    z-index: 1;
}

#welcome_id > .resume {
    height: 40px;
    width: 200px;
    background-color: rgb(78, 96, 163);
    border-radius: 10px;
    color: white;
    
    transition: 0.2s;
    
    margin-top: 20px;
    box-shadow: 0 0 20px rgb(78, 96, 163);
}

#welcome_id > .resume:hover {
    background-color: rgb(0, 0, 0);
    box-shadow: 0 0 20px rgb(78, 96, 163);
    border-radius: 10px;
    color: white;
}

#welcome_id > .arrow_down {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    margin-top: 40px;
    
    color: white;
    background-color: rgb(78, 96, 163);
    box-shadow: 0 0 20px rgb(78, 96, 163);
    
    transition: 0.2s;
    animation: up-down 1s ease-in-out infinite alternate;
}    

#welcome_id > .arrow_down:hover {
    background-color: rgb(0, 0, 0);
    box-shadow: 0 0 20px rgb(78, 96, 163);
}    

#welcome_id > div {

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: rgba(45, 59, 90, 0.308);
    border-radius: 50%;
    box-shadow: 0 0 50px rgb(132, 145, 174);

    height: 100px;
    width: 100px;
    
    position: absolute;
    z-index: 0;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}


@media only screen and (max-width: 1500px) {
    main > #welcome_id {
        height: fit-content;
        padding-bottom: 20px;
    }
}
