* {
    padding: 0;
    margin: 0;
    font-size: 1.6rem;
    font-family: 'Zen Maru Gothic', sans-serif;
    letter-spacing: -1px;
    --cream-kinda: rgba(254,246,243,255);
}

#top {
    height: calc(45vh - 2px);
    background-image: url(./images/yohariko.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}

#icon-outer {
    height: 192px;
    width: 192px;
    background: linear-gradient(rgba(236,165,233,255), rgba(169,220,251,255));
}

#icon, #icon-outer{
    position: absolute;
    top: 45vh;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

#break {
    height: 4px;
    width: 100vw;
    top: 45vh;
    background: #CBC1F2;
}

#bottom {
    height: calc(55vh - 2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgb(250, 171, 214), rgb(236, 156, 248));
}

#links {
    display: flex;
    margin-top: 48px;
}

ul{
    text-align: center;
    list-style: none;
}

li {
    margin-bottom: 8px;
    transition: 240ms;
}

li:hover {
    transform: translateY(4px);
}

a {
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    color: white;
}

@media only screen and (max-width: 1100px) and (max-height: 856px) {

    * {
        font-size: 1.4rem;
    }

    #icon-outer {
        height: 152px;
        width: 152px;
    }

    #icon {
        height: 144px;
        width: 144px;
    }


}