@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;600;700;800&display=swap');

* {
    font-family: "Poppins", sans-serif;
}

.light {
    font-weight: 400;
}

a {
    transition: filter 300ms ease;
}

a:hover {
    filter: invert(1);
}

body {
    margin: 0;
    padding: 0;
    width: 100vw;
    overflow-x: hidden;
    overflow-y: auto;
    background: rgb(255,255,255, 0.3);
    background: -moz-linear-gradient(125deg, rgb(184, 223, 220) 0%, rgba(157,211,207,1) 50%, rgb(110, 147, 145) 100%);
    background: -webkit-linear-gradient(125deg, rgb(184, 223, 220) 0%, rgba(157,211,207,1) 50%, rgb(110, 147, 145) 100%);
    background: linear-gradient(125deg, rgb(184, 223, 220) 0%, rgba(157,211,207,1) 50%, rgb(110, 147, 145) 100%);
}

@media only screen and (min-width: 768px) {
    body {
        background: rgb(255,255,255);
        background: -moz-linear-gradient(125deg, rgb(208, 234, 232) 0%, rgba(157,211,207,1) 50%, rgb(91, 122, 120) 100%);
        background: -webkit-linear-gradient(125deg, rgb(208, 234, 232) 0%, rgba(157,211,207,1) 50%, rgb(91, 122, 120) 100%);
        background: linear-gradient(125deg, rgb(208, 234, 232) 0%, rgba(157,211,207,1) 50%, rgb(91, 122, 120) 100%);
    }
}

main {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.brush-container, .brush-content {
    position: fixed;
    left: 50%;
    width: 750px;
    top: -145px;
    transform: translateX(calc(-50% - 35px));
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.brush-container {
    filter: invert(1);
}

.brush-content {
    margin-left: 20px;
}

.brush-content img {
    width: 220px;
    pointer-events: all;
}

.company-info {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.company-info p, .company-info a {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
}

.company-info p {
    margin-bottom: 75px;
    margin-left: -80px;
}

@media only screen and (min-width: 1150px) {
    .brush-container, .brush-content {
        width: 1100px;
        top: -300px;
        transform: translateX(calc(-50% - 360px));
        margin-left: unset;
    }

    h1 {
        font-size: 2.5em;
    }

    .company-info p, .company-info a {
        font-size: 1.4rem;
    }

    .company-info p {
        margin-bottom: 130px;
        margin-left: 550px;
    }
}

@media only screen and (min-width: 1600px) {
    .brush-container, .brush-content {
        width: 1300px;
        top: -350px;
        transform: translateX(calc(-50% - 450px));
    }

    h1 {
        font-size: 3em;
    }
}

@media only screen and (max-width: 400px) {
    h1 {
        font-size: 1.6em;
    }

    .company-info p, .company-info a {
        font-size: 1rem;
    }

    .company-info p {
        margin-bottom: 100px;
    }
}

@media only screen and (max-height: 800px) and (max-width: 400px) {
    .company-info p, .company-info a {
        color: black;
        z-index: 1;
    }
}

@media only screen and (max-height: 680px) and (max-width: 400px) {
    .brush-container, .brush-content {
        width: 675px;
        top: -180px;
    }
}

.brush-content {
    z-index: 1;
    top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brush-content .contents {
    display: flex;
    flex-direction: column;
    row-gap: 30px;
}

