@font-face {
    font-family: NotoSans;
    src: url("NotoSans.ttf");
}
* {
    color: #1F1F1F;
    font-family: NotoSans, sans-serif;
}
html {
    height: 100%;
}
body {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    margin: 0;
    padding: 24px;
}
div {
    align-items: center;
    border: solid #00000060 1px;
    border-radius: 24px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    padding: 24px;
    width: 720px;
}
img {
    border: solid #00000060 1px;
    border-radius: 16px;
    width: 100px;
}
h2 {
    margin: 0;
    padding: 0;
}
p {
    margin: 0;
    padding: 0;
    text-align: center;
}
#downloadbtn {
    background-color: #4088C7;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    justify-content: center;
    outline: none;
    padding: 12px 16px;
    text-decoration: none;
}
#downloadbtn:hover {
    background-color: #2A689C;
    color: white;
}
@media (max-width: 752px) {
    div {
        width: calc(100% - 32px);
    }
}
