body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 100vh;
    /* Covers the full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('images/feathers.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    overflow: hidden;
    /* Prevent scrolling */
}

h1 {
    text-align: center;
    margin: 0 0 30px 0;
    padding-top: 40px;
    font-size: 72px;
    line-height: 1.1;
    color: #FFFFFF;
    flex-shrink: 0;
    /* Add a text shadow */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.noto-sans-600 {
    font-weight: 600;
}

.link-section {
    display: flex;
    justify-content: center;
    position: relative;
    /* and its content (the .icon-container) is centered */
    z-index: 3;
}

.icon-container {
    display: flex;
    gap: 17px;
    /* Space between icons */
    padding: 10px 30px;
    /* Spacing inside the container */
    background: rgba(255, 255, 255, 0.75);
    /* White background with opacity */
    border-radius: 30px;
    /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    /* Optional: Adds a subtle shadow for depth */
    /* New properties for centering the .icon-container */
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 1);
}

.icon-container a {
    height: 28px;
    width: 28px;
}

.link-section img {
    width: 28px;
    height: 28px;
    cursor: pointer;
    transition: transform 0.3s ease;
    opacity: 0.8;
    filter: grayscale(100%);
}

.link-section .birdeye img {
    width: 32px;
    height: 32px;
    margin: -2px 0 0 -2px;
}

.link-section .x img {
    width: 20px;
    height: 20px;
    margin: 4px;
    opacity: 0.5;
}

.link-section img:hover {
    transform: scale(1.05);
    opacity: 1;
    filter: none;
}

.main-svg {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.main-svg img {
    height: auto;
    max-height: 100%;
    width: 80%;
    max-width: 80%;
}


@media only screen and (min-width: 320px) {

    /* Small screen, non-retina */

}

@media only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 320px),
only screen and (min--moz-device-pixel-ratio: 2) and (min-width: 320px),
only screen and (-o-min-device-pixel-ratio: 2/1) and (min-width: 320px),
only screen and (min-device-pixel-ratio: 2) and (min-width: 320px),
only screen and (min-resolution: 192dpi) and (min-width: 320px),
only screen and (min-resolution: 2dppx) and (min-width: 320px) {

    /* Small screen, retina, stuff to override above media query */

}

@media only screen and (min-width: 700px) {

    /* Medium screen, non-retina */

    .link-section {
        position: fixed;
        bottom: 30px;
        left: 0;
        /* These two lines ensure that the .link-section is full width */
        right: 0;
    }
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 700px),
only screen and (min--moz-device-pixel-ratio: 2) and (min-width: 700px),
only screen and (-o-min-device-pixel-ratio: 2/1) and (min-width: 700px),
only screen and (min-device-pixel-ratio: 2) and (min-width: 700px),
only screen and (min-resolution: 192dpi) and (min-width: 700px),
only screen and (min-resolution: 2dppx) and (min-width: 700px) {

    /* Medium screen, retina, stuff to override above media query */

}

@media only screen and (min-width: 1300px) {

    /* Large screen, non-retina */

    h1 {
        margin: 0 0 60px 0;
        font-size: 82px;
    }

    .main-svg img {
        max-width: 50%;
    }

}

@media only screen and (-webkit-min-device-pixel-ratio: 2) and (min-width: 1300px),
only screen and (min--moz-device-pixel-ratio: 2) and (min-width: 1300px),
only screen and (-o-min-device-pixel-ratio: 2/1) and (min-width: 1300px),
only screen and (min-device-pixel-ratio: 2) and (min-width: 1300px),
only screen and (min-resolution: 192dpi) and (min-width: 1300px),
only screen and (min-resolution: 2dppx) and (min-width: 1300px) {

    /* Large screen, retina, stuff to override above media query */

}