@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    padding: 0;
    margin: 0;
    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-style: normal;
}

body{
    width: 100%;
    height: 100vh;

    overflow: hidden;
    
    background: linear-gradient(212deg, #E8438A 6.69%, #82264D 93.95%);
}

.border{
    border: 1px solid black;
}

.w-100{
    width: 100%;
    height: 72px;
    margin-top: 24px;
}

.icon{
    max-width: 120px;

    animation: icon-animation 2s ease infinite alternate;
}

@keyframes icon-animation{
    0%{
        transform: translate3d(0,0,0);
    }
    100%{
        transform: translate3d(0,12px,0);
    }
}

.profile{
    margin-top: 72px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.profile-img{
    max-width: 96px;
    transition: .7s ease;
    cursor: pointer;
}

.profile-img:hover{
    transform: scale(1.05);
}

.container{
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

p{
    font-size: 15px;
    padding: 0 16px;
    text-align: center;
    max-width: 580px;
    color: rgba(255,255,255,0.5);
    margin-top: 8px;
}

.flex-center{
    display: flex;
    justify-content: center;
    align-items: center;
}

h1{
    color: white;
}

h6{
    color: rgba(255,255,255,0.5);
}

.link{
    text-decoration: none;
    font-size: 16px;

    color: rgba(255,255,255,0.4);
    transition: .7s ease;

    position: relative;
}

.link:hover{
    color: rgba(255,255,255,0.8);
}

.link::after{
    content: '';

    position: absolute;
    bottom: 0;
    left: 0;

    width: 0%;
    height: 1px;

    transition: .7s ease;

    background-color: rgba(255,255,255,0.5);
}

.link:hover::after{
    width: 100%;
    background-color: rgba(255,255,255,0.8);
}


.text-center{
    text-align: center;
}

.btn{
    display: inline-block;
    padding: 12px 32px;
    background-color: #fff;
    text-decoration: none;
    color: #300617;
    border: 0;
    border-radius: 8px;
    transition: .4s ease;
    cursor: pointer;
}

.btn:hover{
    opacity: .7;
}
