* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

a {
    text-decoration: none;
    color: white;
}

main {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 55px 20px;
    background-image: url('../image/desktopBackground.png');
    background-position: center;
    background-size: cover;
}

.logo {
    width: 180px;
    position: absolute;
    top: 40px;
    left: 30px;
}

.profile {
    width: 130px;
}

.profile_info {
    display: flex;
    align-items: center;
    margin-top: 20px;
    color: white;
}

h1 {
    font-weight: 400;
    font-size: 25px;
}

.verified {
    position: relative;
    bottom: 7px;
    left: 5px;
}

.description {
    width: 450px;
    color: rgb(206, 206, 206);
    margin-top: 12px;
    text-align: center;
}

.linkBox{
    width: 700px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 48px;
}

.linkSingle {
    width: 100%;
    text-align: center;
    color: white;
    padding: 30px;
    font-size: 19px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(0, 123, 255, 0.68) 30%, rgba(170, 221, 204, 0.63) 100%);
    transition: all 0.4s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.linkSingle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
}

.linkSingle:hover::before {
    left: 200%;
}

.linkSingle:hover {
    background: linear-gradient(90deg, rgba(0, 123, 255, 0.9) 30%, rgba(170, 221, 204, 0.9) 100%);
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}


.footer {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    color: white;
}

@media screen and (max-width: 750px) {
    .logo {
        display: none;
    }
    .linkBox {
        width: 95%;
    }
    .footer {
        margin-top: 30px;
    }
}

@media screen and (max-width: 550px) {    
    main {
        padding: 30px 20px;
    }
    .linkBox {
        width: 100%;
    }
    h1 {
        font-size: 22px;
    }
    .verified {
        width: 20px;
        bottom: 7px;
        left: 5px;
    }
    .profile {
        width: 120px;
    }
    .description {
        width: 100%;
    }
}

@media screen and (max-width: 450px) {
    main {
        background-image: url('../image/mobileBackground.png');
    }
    .profile {
        width: 100px;
    }
    .linkBox{
        margin-top: 35px;
    }
    .linkSingle{
        font-size: 15px;
    }
    h1 {
        font-size: 19px;
        font-weight: 500;
    }
    .description {
        font-size: 14px;
    }
    .verified {
        width: 18px;
        bottom: 7px;
        left: 5px;
    }
    .footer {
        font-size: 14px;
        gap: 5px;
    }
    .footer img {
        width: 15px;
    }
}