@font-face {
    font-family: 'mclaren';
    src: url('fonts/McLaren-Regular.ttf') format('truetype');
}

html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-image: url(graphics/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
    font-family: 'mclaren';
    margin: 0;
    color: black;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 50px 0 50px;
    box-sizing: border-box;
    flex-direction: column;
}

.container {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 120px;
}

.left {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.right {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.textCont {
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.text {
    margin: 0;
    font-size: 28px;
    user-select: none;
}

.beraLogo {
    width: 154px;
    height: 50px;
    pointer-events: none;
}

.mainText {
    margin: 0;
    font-size: 32px;
    user-select: none;
}

.socials {
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.link {
    height: 50px;
    max-width: 225px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.link:hover {
    background-color: rgba(0, 0, 0, 0.75);
}

.buyLink {
    height: 75px;
    max-width: 333px;
    width: 100%;
    background-color: black;
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-radius: 40px;
    animation: pulse 3s infinite ease-in-out;
}

.buyLink:hover {
    animation: none;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.printerImg {
    pointer-events: none;
}

.bear {
    width: 250px;
    height: 250px;
    pointer-events: none;
    position: fixed;
    bottom: 0;
    right: 0;
    opacity: 0.5;
    transition: opacity 1s ease-in-out;
}

.bear:hover {
    opacity: 1;
}

@media screen and (max-width: 1635px) {
    .container {
        flex-direction: column;
    }

    .right {
        order: 1;
    }

    .left {
        order: 2;
    }
}

@media screen and (max-width: 480px) {
    .printerImg {
        height: 161px;
        width: 450px;
    }
    .buyLink {
        height: 50px;
        width: 220px;
        font-size: 22px;
    }
    .link {
        height: 50px;
        width: 180px;
        font-size: 22px;
    }
    .left {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .mainText {
        font-size: 18px;
    }
    .text {
        font-size: 18px;
    }
    .beraLogo {
        width: 95px;
        height: 13px;
    }
    .bear {
        visibility: hidden;
    }
}