html, body {
    margin: 0;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

header {
    width: 100%;
    height: 140px;
    display: grid;
    grid-template-rows: 1fr;
    position: absolute;
}

.icons-container {
    position: absolute;
    top: 25%;
}

.icons-container .icons {
    display: grid;
    grid-template-rows: repeat(5, 1fr);
    font-size: 35px;
    grid-gap: 10px;
}

.icon-item {
    color: #fff;
    padding: 5px 10px;
    background: linear-gradient(to left, #a044a9 0%, rgba(53,53,53,1) 100%);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.icon-item:hover {
    color: #fff;
    box-shadow: 0 0 8px 0 rgba(218, 76, 231, 0.9);
}

nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 90px;
    align-items: center;
}

.link-perfil {
    display: flex;
    justify-self: flex-end;
}

.welcome-to-user {
    background-image: url('../assets/img/abstract-4431599_1920.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
}

.welcome-to-user .text-home-container {
    display: grid;
    justify-items: center;
    align-items: center;
    height: 100%;
}

.home-main-text {
    display: grid;
    grid-template-rows: 1fr 1fr;
    justify-items: center;
    align-items: center;
}

.main-text {
    font-size: 40px;
    font-weight: 700px;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #fff;
    text-shadow: 0 0 3px rgba(157, 40, 116, 0.9);
    text-align: center;
}

.icon-item {
    color: #fff;
    padding: 5px 10px;
    background: linear-gradient(to left, rgba(157, 40, 116, 1) 0%, rgba(53,53,53,1) 100%);
}

.icon-item:hover {
    color: #fff;
    box-shadow: 0 0 8px 0 rgba(157, 40, 116, 0.9);
}


@media only screen and (max-width: 1024px) {

}

@media only screen and (max-width: 768px) {
    .icon-item {
        font-size: 0.5em;
    }
    .main-text {
        font-size: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .main-text {
        font-size: 18px;
    }
}

@media only screen and (max-width: 320px) {
}