:root {
  font-size: 62.5%;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #5b58582d;
    font-size: 1.6rem;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;

    height: 100vh;
}

main img {
    width: 300px;
    margin-bottom: 20px;
}

main h1 {
    line-height: 120%;
    font-size: clamp(1.5rem, 5vw, 5rem);
}

main p {
    font-size: 2rem;
    color: #333;
}

@media (max-width: 600px) {
    .d-none {
        display: none;
    }
}