@font-face {
    font-family: Wh;
    src: url(../img/wh-reg.woff2);
}

@font-face {
    font-family: Wh-Ink;
    src: url(../img/wh-ink-bld.woff2);
}

:root {
  --white: #ffffff;
  --black: #141414;
  --light-purple: #f1f1f1;
  --dark-purple: #331142;

  --background: var(--dark-purple);
  --text: var(--white);
}

html {
    font-family: Wh, sans-serif;
    color: white;
    font-size: large;
}

body {
    background-color: var(--background);
    margin-top: 4vh;
    margin-left: 18vw;
    margin-right: 18vw;
}

.content {
    margin-left: 15vw;
    margin-right: 15vw;
    display: grid;
    gap: 4vh;
}

.carousel img {
    width: 100%;
    border-radius: 18px;
}

.linkblock {
    display: grid;
    gap: 20px
}

.link {
    min-height: 80px;
    border-radius: 18px;
    display: flex;
    gap: 10px;
    align-content: center;
    align-items: center;
    font-size: 20px;
    background-color: var(--white);
    padding-left: 28px;
    padding-right: 28px;
    align-self: center;
    box-shadow: 5px;
}

.link img {
    height: 40px;
    filter: brightness(0) saturate(100%) invert(23%) sepia(22%) saturate(6049%) hue-rotate(271deg) brightness(93%) contrast(99%);
}

a {
    color: var(--black);
    text-decoration: none;
}

a .link {
    transform: scale(1);
    transition: all 0.2s;
    filter: drop-shadow(0px 5px 10px #0000005b);
}

a .link:hover {
    transform: scale(1.04);
    filter: drop-shadow(0px 5px 20px #0000005b);
}

h1 {
    font-family: Wh-Ink, sans-serif;
    text-align: center;
    font-size: 4rem;
    margin-top: 0;
    margin-bottom: 0;
}

h2 {
    font-family: Wh-Ink, sans-serif;
    font-size: xx-large;
    text-align: center;
}

.avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1400px) {

    .content {
        margin-left: 6vw;
        margin-right: 6vw;
    }
}

@media screen and (max-width: 800px) {
    body {
        margin-left: 6vw;
        margin-right: 6vw;
    }

    .content {
        margin-left: 0vw;
        margin-right: 0vw;
    }
}