@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

body {
    font-family: Poppins, sans-serif;
}

header, footer {
    background-color: #333;
    width: 100vw;
    height: 60px;
    display: flex;
    flex-direction: row;
    left: 0;
    box-shadow: 0 0 5px 5px #0004;
    z-index: 100;
}

header {
    position: fixed;
    top: 0;
}

main {
    min-height: calc(100vh - 180px);
}

footer {
    height: 120px;
    margin-top: 50px;
}

.iheader {
    width: 130vh;
    max-width: 90vw;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    color: #fff;
    align-items: center;
    justify-content: space-between;
}

.iheader nav {
    color: #fff;
}

.iheader nav a {
    color: #fff;
    margin-left: 20px;
    opacity: 60%;
}

.iheader nav a:hover {
    text-decoration: underline;
    opacity: 100%;
}

main {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    max-width: 95vw;
}

section {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 130vh;
    max-width: 85vw;
}

.banner {
    width: 100vw;
    height: 150px;
    background-color: #08f;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ibanner {
    font-weight: 800;
    margin: auto;
}

.container {
    background-color: #0001;
    width: calc(130vh - 20px);
    padding: 10px;
    min-height: 100px;
    margin: 8px auto;
    border-radius: 16px;
    max-width: 80vw;
}

.tag {
    width: calc(100% - 20px);
    padding: 0 10px;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 5px;
}

.tag:hover {
    background-color: #0001;
    cursor: pointer;
}

li {
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
}

img {
    border-radius: 5px;
}