h1 {
    font-size: 3rem;
}

p {
    font-size: 1.5rem;
}

body {
    margin: 0;
    font-family: "Prompt", sans-serif;
    color: white;
    background: #001220;
    overflow-x: hidden;
}

.main {
    position: relative;
    display: flex;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.links {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
}

.link-button {
    text-decoration: none;
    color: #000000;
    text-align: center;
    padding: 16px 8px;
    width: 150px;
    margin: 16px;
    background-color: #4facf7;
}

.link-button:hover {
    color: #ffffff;
    background-color: #0066ff;
}


.spacer {
    aspect-ratio: 960/200;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.blue-waves-top {
    position: -webkit-sticky;
    position: absolute;
    top: 0;
    background-image: url("assets/blue-waves-top.svg");
}

.blue-waves-bottom {
    position: -webkit-sticky;
    position: absolute;
    bottom: 0;
    background-image: url("assets/blue-waves-bottom.svg");
}

.logo {
    width: auto;
    height: 250px;
}

.logo-svg {
    aspect-ratio: 1;
    height: 25vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url("icon.svg");
}
