:root {
    --primary: #0F5D70;
    --background: #0E0E0E;
    --foreground: #191919;
    --subdued: #505659;
}

html {
    height: 100%;
    overflow: hidden;

    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    text-align: center;
}

a {
    color: white;
    text-decoration: none;
}

body {
    background-color: var(--background);
    background: radial-gradient(rgba(24, 73, 85, 0.99), rgba(12, 65, 78, 0.76)), #0E0E0E;

    height: 100%;
    overflow: hidden;
    margin: 0 !important;
}

.box {
    border-radius: 38px;

    background-color: white;
    backdrop-filter: blur(25px);

    aspect-ratio: 1 / 1;
    height: 20vw;

    padding: 25px;

    border: 0.2px solid rgba(255, 255, 255, 0.144);

    display: flex;

    filter: drop-shadow(-10px 10px 25px #000000d3);

    justify-content: center;
    align-items: center;
}

.detailsBox {
    display: flex;
    flex-direction: column;

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

    width: 100%;
    height: 100%;
}

h1 {
    font-weight: 500;
    margin: 0;
    font-size: 2.5em;
}

h2 {
    font-weight: 500;
    margin: 0;
}

img {
    margin: 0;
}

@media only screen and (max-height: 570px) {
   h1 {
    font-size: 1.5em !important;
   } 

   .icon {
      max-width: 20%;
   }
}

@media only screen and (max-width: 1100px) {
    h1 {
        font-size: 1.5em;
    }

    .box {
        max-width: 20%;
    }
}

@media only screen and (min-width: 1550px) {
    h1 {
        font-size: 3em;
    }
}

@media only screen and (min-width: 1100px) {
    .detailsBox {
        align-items: center;
        justify-content: center;

        width: fit-content;

        padding-left: 15vw;
    }

    .flexOverride {
        flex: 0 1 auto !important;
        flex-shrink: 0 1 auto !important;
    }

    .flexNonOverride {
        height: 30px;
    }

    .box {
        width: 20vw;
        position: absolute;

        right: calc(100vw - 85vw);
        border-radius: 100px;

        filter: drop-shadow(-10px 10px 35px #000000d3);
    }
}

p:hover {
    text-decoration: underline;
    cursor: pointer;
}
