@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

html{
    margin: auto;
    padding: auto;
    color: #181818;
    background: #f8f8f8;
    font-family: "Montserrat", sans-serif;
}

.content-section{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.info-message{
    background: #3498db;
    color: #f8f8f8;
    border-radius: 24px;
    padding: 10px;
    text-align: center;
}

.info-message img{
    height: 30dvh;
}

.tags{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: space-around;
    align-items: baseline;
}

@media screen and (max-width:400px){
    .info-message img{
        height: 10dvh;
    }

    .tags{
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
    }
}

.tag{
    background: #34495e;
    border-radius: 12px;
    margin: 5px;
    padding: 0px 10px;
    width: auto;
    height: auto;
    user-select: none;
    text-transform: capitalize;
}

.tag:hover, .tag:focus{
    background: #2c3e50;
}

.link{
    color: inherit;
    text-decoration: none;
}

.link:hover, .link:focus{
    color: #2c3e50;
    text-decoration: underline;
}