@import url('https://fonts.googleapis.com/css2?family=Bpmf+Zihi+Kai+Std&display=swap');

body {
    background-color: #1d1f20;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    font-family: "Bpmf Zihi Kai Std", sans-serif;
    padding-bottom: 80px;
}

* {
    padding: 0; margin: 0;
}

h1 {
    color: #e78b96;
    font-size: clamp(32px, 3vw, 62px);
    letter-spacing: 4px;
    margin-block: 100px 20px;
}

h2 {
    color: #e78b96;
    font-size: clamp(24px, 3vw, 48px);
    margin-block: 40px 20px;
}

h1 .ash {
    color: #7391b1;
}

h1 .and {
    color: #fcd199;
}

img {
    max-width: 900px;
    height: auto;
}

p {
    max-width: 1200px;
    margin-inline: 10px;
    color: #D4D4D4;
    font-size: clamp(13px, 1.5vw, 20px);
    margin-bottom: 60px;
}

.install {
    display: flex;
}

.install .box {
    background-color: hsl(200, 5%, 24%);
    color: white;
    font-weight: 500;
    text-decoration: none;
    font-size: clamp(13px, 1.5vw, 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 30px;
}

.install .box svg {
    max-width: 40px;
}

footer {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #D4D4D4;
}

footer span {
    background-color: hsl(200, 5%, 24%);
    color: white;
    font-size: 15px;
    padding: 5px;
    margin-top: 40px;
}

footer img {
    max-width: 100px;
    margin-top: 80px;
}