@font-face {
    font-family: "sleek";
    src: url("../font/sleek.ttf") format("truetype");
}

@keyframes fadein {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "sleek", sans-serif;
    background: white;
}

.title {
    grid-column: 1/-1;
    display: flex;
    justify-content: center;
    align-items: center;

    transform: translateY(15%);
    padding-bottom: 40%;

    color: #87CEEB;
    font-family: "sleek";
    font-size: 5rem;

    opacity: 0;
    animation-name: fadein;
    animation-duration: 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
}

.title img {
    width: 100%;
    display: block;
}

.page {
    display: grid;
    grid-template-columns: 1fr 600px 1fr;
    gap: 40px;
    padding: 40px;
}

.main {
    grid-column: 2;
    padding: 40px;
    line-height: 1.8;

    color: grey;
    font-family: "sleek";
    font-size: 3rem;
    font-weight: bold;
}

.left {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.right {
    grid-column: 3;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.right img {
    max-width: 100%;
    height: auto;  
    transform: scale(-1, 1);
}

.left img {
    max-width: 100%;
    height: auto;  
    transform: scale(1, 1);
}