@font-face {
    font-family: GT Walsheim Pro;
    src: local("GT Walsheim Pro Regular"),
        local("GTWalsheimProRegular"),
        url(../font/GTWalsheimProRegular.woff2) format("woff2"),
        url(../font/GTWalsheimProRegular.woff) format("woff"),
        url(../font/GTWalsheimProRegular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: GT Walsheim Pro;
    src: local("GT Walsheim Pro Bold"),
        local("GTWalsheimProBold"),
        url(../font/GTWalsheimProBold.woff2) format("woff2"),
        url(../font/GTWalsheimProBold.woff) format("woff"),
        url(../font/GTWalsheimProBold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "GT Walsheim Pro", sans-serif;
}

.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header {
    background-color: #561691;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 150px;
}

.footer {
    background-color: rgb(255 255 255/1);
    margin-top: -10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.brand {
    margin-top: -65px;
    width: 130px;
    border-radius: 9999px;
    border-width: 15px;
    border-style: solid;
    border-color: rgb(255 255 255/1);
    background-color: rgb(255 255 255/1);
}

.meta {
    padding-bottom: 15px;
    border-bottom-color: #0000000d;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    color: rgb(19 29 41/1);
}

.meta h1 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.meta p {
    font-size: 1rem;
    line-height: 1.5rem;
    color: rgb(118 124 131/1);
}

.website {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: rgb(255 255 255/1);
}

.website a {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 9999px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 0 #0000, 0 0 #0000, 1px 6px 30px #001f0e0d;
    text-decoration: none;
    color: rgb(35, 35, 33);
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
}

.website a:hover {
    opacity: .8;
    transform: translate(0, 0) rotate(0) skewX(0) skewY(0) scaleX(1.01) scaleY(1.01);
}

.website a div {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
}

.website a div img {
    width: 45px;
}

.website a div span {
    margin-left: 15px;
    margin-right: auto;
}

.social {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 20px;
}

.social h2 {
    color: rgb(19 29 41/1);
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 10px;
}

.list {
    width: 100%;
}

.list a {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-shadow: 0 0 #0000, 0 0 #0000, 1px 6px 30px #001f0e0d;
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 10px;
}

.list a:hover {
    opacity: .9;
}

.list a div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
}

.list a div img {
    width: 45px;
}

.list a div div {
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.list a div div h3 {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    color: rgb(19 29 41/1);
}

.list a div div p {
    font-size: .75rem;
    line-height: 1rem;
    color: rgb(118 124 131/1);
}