html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    font-family: "Noto Sans", sans-serif;
    margin: 0;
    background-color: #4c5c68;
    color: #dcdcdd;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #46494c;
    padding: 5px;
    color: white;
    position: sticky;
    top: 0;
    height: 70px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    z-index: 10000;
}

main {
    flex: 1;
}

footer {
    background: #46494c;
    text-align: center;
    min-height: 3vh;
}

.logo img {
    max-width: 3.2rem;
    margin: 10px 10px 0;
    position: relative;
    bottom: 0.3rem;
}

.logo h1 {
    margin: 5px;
    color: #dcdcdd;
}

.logo {
    display: flex;
    align-items: center;
}

.navigation {
    grid-column: 8;
    display: flex;
    justify-content: end;
    align-items: center;
    font-size: 1.2rem;
}

.navigation a {
    color: white;
    margin-right: 10px;
}

.navigation a:hover,
.navigation a:focus {
    color: #1985a1;
    text-decoration: none;
}

article {
    display: flex;
    flex-direction: column;
}

main > .h1 {
    text-align: center;
    font-size: 3.5rem;
    background-color: #1985a1;
}

main > #ai-stop {
    font-size: xx-small;
    text-align: center;
}

article img {
    max-width: 100%;
}

.gbt-vpn-logo {
    display: flex;
}

.gbt-vpn-logo img {
    max-width: 25rem;
    max-height: 100%;
}

.gbt-vpn-logo p, .gbt-vpn-logo h2 {
    max-width: 20rem;
}

/*why tf did i name this "arti"*/
.arti {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

/*Download button*/
/*Sadly this button is AI generated, i made it a long time ago and now its iconic*/
.link-button {
    /*margin: 2rem;*/
    padding: 20px 40px; /* Bigger padding */
    /*background-color: #007BFF;*/
    background-color: #1985a1;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 22px; /* Bigger text */
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    position: relative;
    display: inline-block;
}
/*bro what are these comments*/
.link-button:hover {
    background-color: #0056b3;
    transform: scale(1.05); /* Slight zoom on hover */
/*    it's really obvious from this ^ chopped ahhh comment*/
}

.link-button img {
    max-width: 7rem;
    position: absolute;
    top: -1.5rem;
    right: -1.5rem;
}

.download {
    /*the margin is rly wierd here*/
    margin: 3.5rem;
    position: relative;
}
/*no more button (finally)*/

.images {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.images h2, .images h3 {
    margin: 2rem;
}

.images img {
    max-width: 70%;
    margin: 2rem;
}

.images video {
    max-width: 66%;
    margin: 2rem;
}

.gif {
    max-width: 100%;
    margin: 2rem;
}