@font-face {
    src: url("/assets/fonts/windows-xp.otf");
    font-family: "WindowsXP";
}

html {
    height: 100%;
    width: 100%;
    background: green;
    background-image: url("/assets/frutigerCity.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

#bubble {
    z-index: -1000;
    pointer-events: none;
    height: 150px;
    width: 150px;
    position: fixed;
    left: -150px;
}
body {
    display: flex;
    justify-content: center;
}

.main-wrapper {
    height: auto;
    width: 55vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

header {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mainTitle {
    margin-right: calc(27vw - 100px);
    z-index: 100;
    margin-bottom: -50px;
    margin-left: -40px;
}

/* Columns shyt */

.columnWrapper {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.windowButtonsPetite {
    margin-top: -35px;
    margin-right: 0px;
    margin-left: -5px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 55px;
}

.column1 {
    height: auto;
    width: 200px;
    margin-top: 150px;
    margin-right: -30px;
    background-color: lightyellow;
    border: 9px solid #0006b3;
    border-top: 40px solid #0006b3;
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 30px;
}

.columnImageTile {
    margin-top: 20px;
    height: auto;
    width: 100%;
    display: flex;
    color: black;
    font-family: "WindowsXP";
    flex-direction: column;
    justify-content: center;
    align-items: center;
    image-rendering: pixelated;
}

.columnImageTile:nth-child(2) {
    margin-top: -30px;
}

.column2 {
    height: auto;
    width: 250px;
    margin-top: 100px;
    margin-left: -50px;
    background-color: lightyellow;
    border: 9px solid #0006b3;
    border-top: 40px solid #0006b3;
    border-radius: 10px;
    padding-left: 50px;
    z-index: -1;
}

/* Main body */
main {
    width: 40vw;
    flex: 1;
    justify-self: stretch;
    background-color: lightyellow;
    padding-right: 40px;
    padding-left: 40px;
    padding-bottom: 20px;
    border: 9px solid #2a6df0;
    border-top: 40px solid #2071ef;
    border-radius: 10px;
    box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.25);
}

.windowButtons {
    margin-top: -35px;
    margin-right: -40px;
    margin-left: -40px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 85px;
}

.windowTitle {
    font-family: "windowsXP";
    font-size: 20px;
    color: aliceblue;
}

.textBox {
    padding-bottom: 20px;
    font-family: "WindowsXP";
    font-size: 20px;
}

.linked {
    font-style: italic;
    cursor: pointer;
}

footer {
    width: 100%;
    height: 200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

/* profile picture */
.profile-wrapper {
    height: 20vw;
    width: 20vw;
    display: grid;
    justify-content: center;
    place-items: center;
    position: relative;
    top: 100px;
    right: 50px;
}

.profile-picture {
    height: 9.5vw;
    width: 9.5vw;
    grid-area: 1 / 1;
}

.profile-frame {
    height: 12vw;
    width: 12vw;
    grid-area: 1 / 1;
}
