:root {
    --main-color: rgb(43, 38, 38);
  }


* {
    margin: 0px;
    padding: 0px;
}

body{
    color: var(--main-color);
    display: flex;
    font-size: 1.2rem;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    font-family: Helvetica, sans-serif;
    /* background-color: rgb(133, 118, 118); */
}
main {
    /* background-color: rgb(45, 167, 167); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height:100%;
    max-width: 100%;
    /* background-color: rgb(106, 163, 44); */
}

footer{
    /* background-color: blueviolet; */
}

img{
    width: 9rem;
    height: auto;
    transform: scale(-1,1) translateX(-0.7rem) rotate(-10deg);
}

.headline{
    padding-top: 1rem;
    font-family: 'UnifrakturMaguntia', cursive;
    max-width: 100%;
    font-size: 8rem;
    text-align: center;
    overflow-wrap: break-word;
    /* word-wrap: break-word; */
    /* overflow: hidden; */
    letter-spacing: -0.4rem;
    line-height: 6.3rem;
    /* line-height: -1rem; */
}

sup{
    font-size: 2rem;
    width: 3rem;
}

h3{
    font-size: 2rem;
}


p{
    margin-top: 3rem;
    max-width: 90%;
    text-align: center;
    line-height: 1.6rem;
    line-height: 2rem;
    font-size: 1.5rem;
}

ul{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    padding: 1rem;padding-top:2rem;
    /* border-top: 0.1rem solid rgb(0, 0, 0); */
}

li{
    /* display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; */
    /* gap:1rem; */

    display: block;
    /* text-transform: uppercase; */
    /* font-size: 0.4rem; */
}

a{
    text-emphasis-color: unset;
    text-decoration: none;
    color: var(--main-color);
}

a:hover {
    /* text-decoration: underline; */
    padding-bottom: 0.1rem;
    border-bottom: 0.2rem solid rgb(0, 0, 0);
}




@media only screen and (max-width: 600px) {
    ul{
    
        flex-direction: column;
    }
}


@media only screen and (min-width: 600px) {
    .headline{
        font-size: 12rem;
        line-height: 4rem;
        letter-spacing: -0.75rem;;
    }

    img{
        width: 12rem;
        transform: scale(-1,1) translateX(-1.5rem) translateY(-1rem) rotate(-10deg);
    }

    p{
        margin-top: 4rem;
        line-height: 2rem;
        font-size: 1.5rem;
    }
    
}
