a {
    text-decoration: none;
    color: #efefef;
    text-align: center;
}

.typing {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;
    padding-left: 10%;
    padding-top: 14%;
    color: #efefef;
    font-size: 5em;
    animation: blink 1s step-start 0s infinite;
}

@media screen and (orientation: portrait) {
    .typing {
        padding-left: 5%;
        font-size: 3em;
        padding-top: 45%;
    }

    .about-button-container {
        padding-top: 5% !important;
        padding-left: 5% !important;
    }

    .about-button {
        padding: 1% 3% 2% 3% !important;
        border-width: 1px !important;
        font-size: 1.5em;
    }
}

@media screen and (orientation: portrait) and (min-width: 500px) and (max-width: 700px) and (min-height:600px) and (max-height: 750px) {
    .typing {
        padding-top: 30%;
    }
}


@media screen and (max-width: 230px) {
    .typing {
        font-size: 2em;
        padding-left: 5%;
        padding-top: 50%;
    }

    .about-button {
        font-size: 1.2em !important;
    }
}

@keyframes button {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-button-container {
    padding-top: 2%;
    padding-left: 10%;
    padding-bottom: 40vh;
    animation: button 1s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.about-button {
    padding: 5px 10px 5px 10px;
    display: inline-flex;
    border-width: 1.5px;
    border-style: solid;
    border-color: #efefef50;
    border-radius: 15px;
    background: none;
    font-size: 1.5em;
    font-weight: bold;
    color: #efefef;
    text-decoration: none;
    cursor: pointer;
}

.about-button:hover {
    transform: translateY(-3px);
    transition: ease 0.5s;
    border-color: #efefef80;
    box-shadow: #00000080 0 2px 5px 0;
}

.posts-container {
    margin: auto;
    max-width: 90%;
}

.posts {
    display: block;
    align-items: center;
    background: none;
    border-width: 1px;
    border-style: solid;
    border-color: #efefef50;
    border-radius: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    animation: show-posts 0.5s ease forwards;
    z-index: 99;
    position: relative;
}

@keyframes show-posts {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.posts img {
    border-radius: 10px;
    margin-left: 20px;
    margin-top: 20px;
    margin-bottom: 0;
    margin-right: 20px;
    width: calc(100% - 40px);
    height: 40vh;
    object-fit: cover;
    border: 2px solid #333;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    max-width: none;
}

@media screen and (max-width: 700px) {
    .posts img {
        height: 40% !important;
    }
}

.posts h3 {
    font-size: 1.5em;
    margin-left: 20px;
    margin-right: 20px;
    margin-block-end: 10px;
    padding-block-start: 0;
    padding-block-end: 0;
}

.posts p {
    margin-left: 20px;
    margin-right: 20px;
    margin-block-end: 0px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.time {
    font-size: 0.8em;
    margin-block-start: 5px;
    margin-block-end: 20px !important;
    color: #efefef80;
}

/*
    .notice {
        padding: 5px 10px 5px 10px;
        position: fixed;
        top: 6em;
        right: 3em;
        width: 300px;
        height: 15%;
        border-width: 1.5px;
        border-style: solid;
        border-color: #efefef50;
        border-radius: 10px;
        background-color: #222222;
        transition: ease-in-out 1s;
        animation: slidein 8s;
        transform: translateX(500%);
    }

    .notice h4 {
        margin-block-start: 5px;
        margin-top: 5px;
    }

    @keyframes slidein {
        0% {
            transform: translateX(500%);
        }

        20% {
            transform: translateX(500%);
        }

        30% {
            transform: translateX(0);
        }

        90% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(500%);
        }
    }
    */