:root {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    background-color: black;
    font-optical-sizing: auto;
    color: white;
    letter-spacing: -0.08em;
}

.content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 5vw;
    gap: 30px;
    z-index: 10;
}
.intermediary  {
    background-color: black;
    opacity: 85%;
    /* filter: blur(240px); */
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

a {
    color: white;
}
a:hover{
    color: aquamarine;
}
#greetingContainer {
    width: 60vw;
    font-size: 6em;
    max-width: 700px;
    min-width: 350px;
    flex-grow: 0;
    letter-spacing: -4px;
}

#links {
    display: flex;
    flex-direction: column;
    font-size: 2.5em;
    min-width: 200px;
    flex-shrink: 1;
}
#g1{
    font-size: smaller;
}
#g2 {
    font-size: larger;
    font-weight: 600;
}

.background {
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, #ffffff, #c9fff3);
    display: flex;
    flex-grow: 1;
    z-index: -10;
}

.background div {
    position: absolute;
    border-radius: 100%;
    height: 0;
    filter: blur(240vw);
    opacity: 0.4;
}

.background div:nth-child(1) {
    background: linear-gradient(132deg, #ffc4ab 0.00%, #ffa57d 100.00%);
    width: 63%;
    padding-top: 63%;
    left: 71%;
    top: 22%;
    transform: translateX(-50%) translateY(-50%);
}

.background div:nth-child(2) {
    background: linear-gradient(132deg, #f8ad8b 0.00%, #c7b2ff 100.00%);
    width: 97%;
    padding-top: 97%;
    left: 26%;
    top: 29%;
    transform: translateX(-50%) translateY(-50%);
}

.background div:nth-child(3) {
    background: linear-gradient(132deg, #a6a7fc 0.00%, #e346e4 100.00%);
    width: 55%;
    padding-top: 55%;
    left: 68%;
    top: 74%;
    transform: translateX(-50%) translateY(-50%);
}

img {
    max-width: 90vw;
}