:root {
	--color-text: #424242;
	--color-accent: #ed008c;
	--color-gray: #686868;
    --color-background: #cdd0d5;
}

body {
    margin: 0;
    user-select: none;
	background: url(../assets/icons/background.png);
    font-family: Tahoma, Arial, Helvetica, sans-serif;
    font-size: 80%;
    color: #333333;
}

.background {
    width: 1280px;
    height: 853px;
    background-color: var(--color-background);
}

.header {
    width: 100%;
    height: 83px;
    background-color: #ffffff;
}
.title {
    color: var(--color-accent);
    font-weight: 500;
    font-size: 26px;

    float: left;
    margin-left: 35px;
    margin-top: 26px;
}
.logo {
    position: absolute;
    width: 403px;
    height: 73px;
    left: calc(1280px - 403px);
    top: 10px;
    padding: 0;
    margin: 0;
}

.intro-text {
    text-align: center;
    padding: 20px 0 5px 0;
}

.puzzle-img {
    cursor: pointer;
}

table.puzzle {
    border-collapse: collapse;
    margin: 0 auto;
    padding: 0;
}
td {
    margin: 0;
    padding: 0;
}

.button {
    cursor: pointer;
    display: block;
    margin: 30px auto 30px auto;
}

.corner {
    position: absolute;
    background-color: var(--color-accent);
}
.corner.top {
    width: 3px;
    height: 100px;
    top: 113px;
}
.corner.bottom.horizontal {
    width: 100px;
    height: 3px;
    top: 823px;
}
.corner.bottom.vertical {
    width: 3px;
    height: 100px;
    top: 723px;
}
.left {
    left: 30px;
}
.right {
    left: 1247px;
}
.right-horizontal {
    left: 1150px;
}

@media (max-width: 600px) {

    body {
        background: none;
        overflow-x: hidden;
    }

    .background {
        width: 100vw;
        height: 100vh;
    }

    .header {
        width: 100vw;
        height: 160px;
        display: flex;
        flex-direction: column-reverse;
    }
    .title {
        font-size: 28px;
        margin-left: 25px;
        margin-top: 10px;
    }
    .logo {
        left: 0;
    }

    .puzzle-img {
        width: calc(95vw / 3);
        height: calc(95vw / 3);
    }
    
    .corner {
        display: none;
    }
}