body {
    /* background-image: url('wallpaper.jpeg'); */
    background: black;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    font-family: "JetBrains Mono", monospace;
}

a {
    text-decoration: none;
}

.welcome {
    display: flex;
    justify-content: center;
}

.welcome-text {
    text-decoration: underline;
    padding: 18px;
    font-size: 4vh;
    color: white;
    margin-top: 10vh;
}

/* window */
.dragable-section {
    position: absolute;
    cursor: grab;


}

.widget-container {
    position: absolute;
    display: grid;
    grid-template-columns: fit-content(100%);
    gap: 0;
    left: 10vh;
    top: -10vh;

}


.window {
    background: rgba(0, 0, 0, 0.3);
    border: 3px solid white;
    border-bottom: none;
    padding: 1px;
    display: flex;
    justify-content: space-between;

}


.window span {
    display: inline-block;
    color: white !important;
}

.window>span {
    color: white;
    margin-left: 9px;
}

.buttons {
    display: flex;
    justify-content: flex-end;
}

.window-button {
    padding-left: 7px;
    padding-right: 7px;
    border: 1px solid white;
    margin: 0;
}

.widget-section {
    width: fit-content;
    padding: 20px;
    border: 3px solid white;
    background-color: rgba(0, 0, 0, 0.5);
}

.widgets {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 20px
}

.profile-container {
    position: absolute;
    grid-template-columns: fit-content(100%);

}

.profile {
    border: 3px solid white;
    width: 50vh;
    background: rgba(0, 0, 0, 0.5);

}

.profile-text {
    color: white;
    margin: 18px;
}

.profile-section {
    left: 40%;
    top: 30%;
    transform: translateX(-50%);
}

.icon-section {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-sizing: border-box;
    margin-right: 20px;
    flex-direction: column;


}

.icons {
    margin-top: -18vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5vh;

}

.icons:hover {
    cursor: pointer;
}

.icon-name {
    color: white;
    margin-top: 0px;
}


.polish-cow {
    position: absolute;
    bottom: 8vh;
    left: 12vh;
}
