* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background-color: #f5bb00;
    color: #fef9ff;
    font-family: sans-serif;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;

    background-image: url("/assets/trees.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: auto 100vh;

    opacity: 0;
    animation: backgroundFadeIn 1.55s ease forwards;
    animation-delay: 0.45s;

    z-index: -1;
}
@keyframes backgroundFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding-top: 30vh;
    text-align: center;
}

.hero h1 {
    color: #FEF9FF;
    font-size: 128px;
    margin-bottom: 2px;
}
.hero p {
    color: #FEF9FF;
    font-size: 24px;
}
.hero img {
    width: 100vw;
    height: auto;
    margin-top: 32px;
}

.trees {
    width: 100vw;
    height: auto;
    display: block;
}

#ports {
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 100%;
    margin-top: 30px;
}
#java-ip,
#bedrock-port {
    display: flex;
    justify-content: center;
}
.copy-card {
    display: flex;

    width: 400px;
    height: 105px;

    box-sizing: border-box;

    align-items: center;
    justify-content: space-between;

    padding: 20px 28px;

    background: white;
    border: 3px solid red;
}
.copy-info {
    display: flex;
    flex-direction: column;
}
.copy-label {
    font-size: 16px;
    color: black;
}
.copy-value {
    font-size: 25px;
    color: black;
}
.copy-button {
    width: 58px;
    height: 58px;
}