/*

    faeberry.net

*/

@font-face {
    font-family: "open sans";
    src: url("opensans.ttf") format("truetype");
    font-weight: normal;
    font-display: swap;
}

@font-face {
    font-family: "open sans";
    src: url("opensans.ttf") format("truetype");
    font-weight: bold;
    font-display: swap;
}

html {
    height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* fix mobile webkit viewport bug */
    min-height: -webkit-fill-available;
    min-height: 100vh;
    margin: 0px;
    padding: 0px;
    background: rgb(255,85,154);
    background: radial-gradient(circle, rgba(255,85,154,1) 0%, rgba(255,173,206,1) 9.5%, rgba(255,255,255,1) 80%); 
    background-size: cover;
    font-family: "open sans", sans-serif;
    font-size: 16px;
    text-align: left;
    color: #000000;
}

a, a:link, a:visited, a:active {
    color: #dd5797;
    text-decoration: none;
}

a:hover {
    color: #dd5797;
    text-decoration: underline;
}

::selection {
    background: rgba(186, 157, 245, 0.3);
}

#container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: auto;
    max-width: 93vw;
    height: auto;
    background: #ffffff;
    word-break: normal;
    overflow-wrap: anywhere;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1.5px solid #000000;
}

#box {
    position: relative;
    margin: 40px 40px 40px 40px;
}

#container .smiley {
    position: absolute;
    display: flex;
    top: 0px;
    right: 0px;
    margin-top: -25px;
    margin-right: -25px;
    /*width: 75px;
    height: 75px;*/
    animation: slay 5s infinite linear;
}

#box h1 {
    margin: 0px 0px 0px 0px;
    font-size: 24px;
    color: #dd5797;
}

#box h2 {
    margin: 0px;
    font-size: 16px;
    font-weight: normal;
}

#box h3 {
    margin: 0px;
    color: #dd5797;
}

#box .feat, #box .divide, #box .links {
    position: relative;
}

#box .links {
    margin-top: 15px;
}

#box .divide {
    margin: 15px 0px 15px 0px;
}

p {
    margin: 0px;
}

icon {
    font-size: 16px;
}

#box .footer {
    max-width: 300px;
    font-size: 10px;
    box-sizing: border-box;
    word-break: break-all;
    margin-top: -10px; /* the bitch looks uneven without this */
}

@keyframes slay {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

@media only screen and (max-height: 600px) {
    #container {
        margin: 10px;
    }
}

@media only screen and (max-width: 444px) {
    #container .smiley {
	display: none;
    }
}
