body {
    background-color: #55BACF;
    font-family: Pixelify Sans;
}

.desktop {
  position: relative;
  width: 100%;
  height: calc(100vh - 60px);
}

.desktop_nome {
    color: #003E7C;
    opacity: .2;
    font-size: 18px;
    margin-top: 2%;
    display: flex;
    justify-content: center;
    cursor: default;
}

.desktop_icon {
    position: absolute;
    left: var(--x);
    top: var(--y);
}

.desktop_link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: .25;
}

.desktop_link:hover {
    transform: translate(2px, 2px);
}

.desktop_link p {
    margin-top: 10px;
    text-align: center;
}

footer {
    background-color: #003E7C;
    position: absolute;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45px;
    border-top: 4px solid #046FDB;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.inicio_btn {
    position: relative;
    border: none;
    background: transparent;
    cursor: pointer;
    scale: 1.12;
    margin-bottom: .315%;
}

.inicio_btn img {
    display: block;
}

.inicio_hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.inicio_btn:hover .inicio_normal {
    opacity: 0;
}

.inicio_btn:hover .inicio_hover {
    opacity: 1;
}