@font-face {
    font-family: "anglorunic";
    src: url("AvQest.ttf");
}

.body {
    margin: 0px;
    overflow: hidden;
    cursor: url("images/arrow.cur"), auto;
}

.d1 {
    width: 100%;
    height: 100vh;
    background-image: url("images/mainwallpaper.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.d2 {
    /*  */
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.i1 {
    width: min(290px, 60vw);
    height: min(46vh, 260px);
    filter: drop-shadow(0px 6px 10px rgba(0, 0, 0, 0.4));
    animation: emblemFloat 4s ease-in-out infinite;
}

.i1 svg {
    width: 100%;
    height: 100%;
}

@keyframes emblemFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.d3 {
    /* background-color: red; */
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.maintext {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(600px, 92vw);
    gap: 6px;
    text-align: center;
    font-family: "anglorunic";
}

.title-main {
    font-size: clamp(32px, 6.5vw, 58px);
    font-weight: bold;
    color: #3affea;
    -webkit-text-stroke: 1.5px #0b3d3d;
    text-shadow: 0px 4px 0px #0e3b4a, 0px 0px 18px rgba(58, 255, 234, 0.55);
    letter-spacing: 1px;
}

.title-sub {
    font-size: clamp(12px, 2.6vw, 18px);
    font-weight: bold;
    color: #ffd166;
    text-shadow: 0px 2px 0px rgba(120, 70, 0, 0.6);
    letter-spacing: 2px;
}

.d4 {
    /* background-color: blueviolet; */
    flex-grow: 3;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

.i2 {
    width: 83px;
    height: 83px;
    background-image: url("images/Play_BTN.png");
    background-repeat: no-repeat;
    background-size: contain;
    transition-duration: 0.3s;
}

.i2:hover {
    width: 83px;
    height: 83px;
    background-image: url("images/Play_BTNh.png");
    background-repeat: no-repeat;
    background-size: contain;
    cursor: url("images/link.cur"), auto;
    transition-duration: 0.3s;
}

.d5 {
    /* background-color: rgba(5, 22, 32, 0.637); */
    background-image: url("images/footer.jpg");
    background-size: contain;
    opacity: 0.9;
    height: 43px;
    width: min(580px, 94vw);
    padding: 0 2vw;
    box-sizing: border-box;
    flex-grow: 1;
    font-family: "anglorunic";
    font-size: clamp(10px, 2vw, 14px);
    color: rgb(126, 126, 126);
    text-align: center;
    text-shadow: 1px 1px 3px rgba(40, 70, 204, 0.144);
    border-radius: 25px 25px 0px 0px;
    box-shadow: 0px 2px 0px 5px rgb(36, 100, 219);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.a {
    text-decoration: none;
    color: rgb(34, 126, 201);
    padding-left: 4px;
    cursor: url("images/link.cur"), auto;
}

.a:hover {
    text-decoration: underline;
    color: rgb(67, 163, 241);
}

.d7 {
    padding-top: 3px;
}