body {
    background-color: #e3e6f7;
    margin: 0;
}
#nav {
    background-color: #eceef8;
    padding: 12px;
    font-weight: 600;
    font-size: 24px;
    display: flex;
    align-items: center;
    margin: 12px;
    border-radius: 8px;
    height: 30px;
}
#goGithub {
    cursor: pointer;
    position: absolute;
    right: 24px;
    transition: 0.2s ease-out transform;
    transform: translateY(-50%);
    &:hover {
        transform: translateY(-50%) scaleX(0.9) scaleY(0.9);
    }
}

#extList {
    background-color: #eceef8;
    display: flex;
    top: 0px;
    left: 0px;
    height: calc(100vh - 30px - 24px - 36px);
    margin: 12px;
    border-radius: 8px;
    justify-content: center;
    flex-wrap: wrap;
    align-content: flex-start;
}

.ext {
    width: 400px;
    height: 200px;
    background: #dbe4ec;
    margin: 8px;
    padding: 24px;
    border-radius: 12px;
    box-shadow: #bbb 0px 1px 1px 0px;
    max-width: 80%;
}

.name {
    font-size: 32px;
    font-weight: 600;
}

.description {
    color: #555;
    display: block;
    margin-top: 4px;
    overflow: hidden;
    height: 130px;
}

.download {
    margin-left: 370px;
    cursor: pointer;
    transition: 0.2s ease-out transform;
    &:hover {
        transform: scaleX(0.9) scaleY(0.9);
    }
}

#notice {
    position: fixed;
    bottom: 12px;
    color: #555;
}

#sorry {
    display: none;
    width: 100vw;
    height: 100vh;
    background-color: #00000000;
    position: fixed;
    z-index: 100;
    backdrop-filter: blur(5px);
    text-align: center;
    font-size: 17px;
    padding-top: 40vh;
}

@media screen and (max-width: 370px) {
    #sorry {
        display: block;
    }
}
