@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background: #fff;
    font-family: "Google Sans";
    color: #333;
    font-display: optional;
}

.greeting {
    position: absolute;
    width: 100vw;
}

.gradient {
    width: 200vw;
    height: 200vh;
    top: -100vh;
    left: -100vw;
    background-image: radial-gradient(#ffffff 55%, transparent);
    background-size: 100vw 100vh;
    position: absolute;
    z-index: 2;
}

.grid {
    z-index: 1;
    background-color: #fff;
    background-image:
        linear-gradient(to right, #d8d8d8 2px, transparent 1px),
        linear-gradient(to bottom, #d8d8d8 2px, transparent 1px);
    background-size: 5vw 5vw;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
}

h1 {
    z-index: 3;
    position: relative;
    text-align: center;
    font-size: 52px;
    line-height: 69px;
    color: #000;
    user-select: none;
    width: 490px;
    margin: 20vh auto 0 auto;
}

h1 span {
    background: #46ff034a;
    color: #157e00;
    padding: 1px 10px 3px 10px;
    border-radius: 10px;
}

.buttons {
    z-index: 3;
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 5vh;
    user-select: none;
}

button {
    border: none;
    padding: 12px 24px;
    border-radius: 14px;
    cursor: pointer;
    margin: 0 6px;
    transition: 0.3s ease;
}

button p {
    font-size: 20px;
    margin: 0;
}

.b1 {
    background: #048eff;
}

.b1 p {
    color: #fff;
}

.b1:hover {
    transform: scale(1.05);
}

.b2 {
    background: none;
    border: 2px solid #eee;
}

.b2 p {
    color: #555;
}

.b2:hover {
    transform: scale(1.05);
}

.container {
    height: 100vh;
    width: 100vw;
    position: relative;
}

.about {
    width: calc(100% - 80px);
    max-width: 700px;
    margin: 0px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 700px) {
    .about img {
        display: none;
    }
}

.about h2 {
    color: #000;
    font-size: 27px;
}

.about p {
    color: #333;
    font-size: 22px;
}

.about img {
    width: calc(100% - 20px);
    max-width: 330px;
}

.column {
    margin-right: 32px;
}

.column2 {
    text-align: right;
    margin-left: 2px;
}

.end {
    margin: 50px 0 100px 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.tenor-gif-embed {
    max-width: 200px;
    margin-bottom: 12px;
}

.end button {
    animation: anim 1.5s linear infinite;
}

.end button p {
    color: #fff;
}

@keyframes anim {
    0% {
        background: #ff6200;
    }

    50% {
        background: #ff9900;
    }

    100% {
        background: #ff6200;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 44px;
        line-height: 59px;
        width: 420px;
    }

    .info h2 {
        font-size: 32px;
    }

    .info h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .info p {
        font-size: 17px;
        line-height: 1.5;
    }

    button {
        padding: 10px 20px;
        border-radius: 11px;
    }

    button p {
        font-size: 18px;
        margin: 0;
    }

    .grid {
        background-size: 7.5vw 7.5vw;
        width: 100vw;
        height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
    }

    .about h2 {
        color: #000;
        font-size: 24px;
    }

    .about p {
        color: #333;
        font-size: 20px;
    }
}

@media screen and (max-width: 540px) {
    h1 {
        font-size: 34px;
        line-height: 50px;
        margin-top: 22vh;
        width: 335px;
    }

    .info h3 {
        font-size: 21px;
    }

    .info p {
        font-size: 16px;
        line-height: 1.5;
    }

    button {
        padding: 9px 18px;
    }

    button p {
        font-size: 17px;
        margin: 0;
    }

    .grid {
        background-size: 10vw 10vw;
        width: 100vw;
        height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
    }
}

.nowrap {
    text-wrap: nowrap;
}