body{
    margin: 0;
    background-color: #111;
    color: #eee;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#main-logo-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100svh;
    background-image: url("../assets/green-layered-waves-bottom.svg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

#main-logo{
    width: 20svw;
    max-width: 80svh;
}

#MortenNapiralla{
    width: 16ch;
    height: 56px;
    font-family: "Roboto Mono", monospace;
    font-weight: bold;
    font-size: calc(20svw / 9);
    text-align: center;
}

main{
    width: 80vw;
    margin: auto;
    margin-top: 32px;
}

#hi{
    font-size: xx-large;
    font-weight: bold;
    margin: 0;
}

#myPlace{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#myPlace p{
    width: 66%;
    font-size: x-large;
}

#dots{
    height: 5rem;
    width: 33%;
    position: relative;
    margin: 1.5rem 0;
}

.dot{
    position: absolute;
    width: 5rem;
    height: 5rem;
    background-color: #333;
    border-radius: 50%;
    background: linear-gradient(90deg, #333, #333, #333, #444, #888);
    background-size: 200% 200%;
    animation: movingBackground 5s ease-in-out alternate infinite;
}

.dot-2{
    left: calc(50% - 2.5rem);
    background: linear-gradient(90deg, #333, #444, #888, #444, #333);
    background-size: 400% 400%;
    animation: movingBackground 5s ease-in-out alternate infinite;
}

.dot-3{
    right: 0;
    background: linear-gradient(90deg, #888, #444, #333, #333, #333);
    background-size: 200% 200%;
    animation: movingBackground 5s ease-in-out alternate infinite;
}

.innerDot{
    position: absolute;
    width: 4rem;
    height: 4rem;
    background-color: #111;
    left: .5rem;
    top: .5rem;
    border-radius: 50%;
}

.connection{
    position: absolute;
    width: 100%;
    height: .5rem;
    top: 2.25rem;
    background: linear-gradient(90deg, #333, #444, #888, #444, #333);
    background-size: 200% 200%;
    animation: movingBackground 5s ease-in-out alternate infinite;
}

#whatIdo{
    font-size: x-large;
}

#myHistory{
    font-size: x-large;
}

#music{
    font-size: x-large;
    color: #111;
}

#music-main{
    display: flex;
    flex-direction: row;
    background-color: #fff;
    background-position: 0 6rem;
}

#black-bg{
    position: absolute;
    width: 82%;
    height: calc(6rem - 2px);
    background-color: #111;
}

#music-main p{
    margin-top: 6rem;
    padding-inline-start: 3rem;
    padding-inline-end: .5rem;
    text-align: right;
}

#music-link{
    background-color: #fff;
    margin-top: 0;
    text-align: center;
    padding-bottom: 1.5rem;
}

#music-link a{
    color: #64cc00;
    font-weight: bold;
}

#uf-logo{
    height: 12rem;
    z-index: 1;
}

footer{
    font-size: small;
    height: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-inline: 24px;
}

@media screen and (max-width: 992px){
    #main-logo{
        width: 40svw;
    }

    header{
        width: 40svw;
    }

    #MortenNapiralla{
        font-size: calc(40svw / 9);
    }

    main{
        width: 90vw;
    }

    #hi{
        font-size: x-large;
    }

    #myPlace{
        font-size: large;
    }

    #myPlace p{
        width: 100%;
        font-size: large;
    }

    #dots{
        width: 100%;
    }

    #whatIdo{
        font-size: large;
    }

    #myHistory{
        font-size: large;
    }

    #music{
        font-size: large;
    }

    #black-bg{
        width: 93%;
    }

    #music-main{
        flex-direction: column;
        align-items: center;
    }

    #music-main p{
        padding-inline: 0.5rem;
        margin-top: 0;
        text-align: center;
    }

    #uf-logo{
        max-width: 24rem;
        width: 100%;
        height: unset;
    }
}

@keyframes movingBackground {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 0%;
    }
}