body {
    background-color: #171d48;
    text-align: center;
}


header h1 {
    font-size: 5em;
    font-weight: 900;
    
    margin-bottom: 15px;
}

header p a {
    font-size: 2em;
    font-weight: bold;
    color: rgb(255, 246, 116);
    
    padding: 8px 20px;
    border-radius: 20px;
    background-color: #4888d2;
}

h2 {
    font-size: 3em;
    margin-top: 15px;
}

#postlist li a{
    font-size: 1.5em;
    font-weight: bold;
    
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto;
    
    height: 200px;
    max-width: 1200px;
    border-radius: 50px;
        
    background-color: #3b427e;    
}

#postlist li a:hover {
    color: #e0f4ff;
    background-color: rgb(60, 71, 170);
}

@media screen and (max-width: 768px) {

    header h1 {
        font-size: 1em;
    }
    
    p {
        font-size: 0.4em;
    }

    h2 {
        font-size: 0.8em;
    }

    #postlist li a {
        height: auto;
        padding: 30px 20px;
        font-size: 1.2em;
        border-radius: 25px;
        margin: 25px auto;
    }
}