@import url('https://fonts.googleapis.com/css2?family=Impact&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@500&display=swap');

body {
    font-family: 'Impact', sans-serif;
    font-size: 30px;
    text-transform: uppercase;
    margin: 0;
}

p {
    margin: 0 0 10px 0;
}

a {
    color: #000;
    text-decoration: none;
}

.tiktok-link, .instagram-link {
    background-size: 40px;
    background-position: left;
    background-repeat: no-repeat;
    padding-left: 45px;
}

.tiktok-link {    
    background-image: url('/images/tiktok-logo.png');
}

.instagram-link {    
    background-image: url('/images/instagram-logo.png');    
}

.main-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}

.line1 {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
    text-align: middle;
}

.middle {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    
    font-size: 65px;
    color: #fd1a77;
    --border-width: 2px;
    text-shadow: calc(-1 * var(--border-width)) calc(-1 * var(--border-width)) 0 #000, 
                 var(--border-width) calc(-1 * var(--border-width)) 0 #000, 
                 calc(-1 * var(--border-width)) var(--border-width) 0 #000, 
                 var(--border-width) var(--border-width) 0 #000;
}

.logo {
    width: 250px;
    height: 250px;
}

.right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.right > a {
    display: block;    
    height: 40px;
    line-height: 40px;    
}

.youtube-link {
    font-size: 14px;
    font-weight: 500;
    font-family: Kanit;
    letter-spacing: 3px;
}

@media screen and (min-width: 769px) and (max-width: 1150px) {
    body {
        font-size: 20px;
    }

    .line1 {
        gap: 30px;
    }

    .middle {
        font-size: 45px;
    }

    .logo {
        width: 150px;
        height: 150px;
    }

    .right > a {
        height: 35px;
        line-height: 35px;
    }

    .youtube-link {
        font-size: 13px;
    }
    
}

@media (max-width: 768px) {    
    body {
        font-size: 20px;
    }

    .line1 {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }

    .middle {
        order: 1;
    }

    .left {
        order: 2;
    }

    .right {
        order: 3;
    }

    .youtube-link {
        font-size: 12px;
    }

    .middle {
        font-size: 40px;
    }

    .logo {
        width: 150px;
        height: 150px;
    }

    .right > a {
        display: block;    
        height: 30px;
        line-height: 30px;
    }

    .tiktok-link, .instagram-link {
        background-size: 30px;
        background-position: left;
        background-repeat: no-repeat;
        padding-left: 32px;
    }
}