* {
    margin: 0;
    padding: 0;
}

body {
    text-align: center;
    font-family: "Audiowide", sans-serif;
}

.container {
    padding: 0px 15px;
    max-width: 687px;
    margin: auto;
}

.profile {
    margin-top: 40px;
    color: #fff;
}

.profile_img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}

.profile_name {
    font-size: 20px;
    margin-top: 10px;
}

.profile_desc {
    font-size: 16px;
    margin-top: 10px;
}

#pt_container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -99;
}

.content {
    margin-top: 20px;

}

.youtube_iframe {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
}

.text {
    margin-bottom: 20px;
    font-size: 16px;
    color: #fff;
}

.btn {
    padding: 20px 20px;
    background: #fff;
    margin-bottom: 15px;
    font-size: 16px;
    border-radius: 100px;
    box-shadow: 8px 5px 2px 1px rgb(0 0 0);
    cursor: pointer;
}


.ripple-effect {
    position: relative;
    display: block;
    overflow: hidden;
}

.ripple-effect div {
    position: absolute;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border-radius: 50rem;
    background-color: #000000;
    animation: rippleEffect 1s linear infinite;
}

.ripple-effect :hover {
    font-weight: bold;
}

@keyframes rippleEffect {
    from {
        width: 0;
        height: 0;
        opacity: .99;
    }
    to {
        width: 500px;
        height: 500px;
        opacity: 0;
    }
}

.footer {

}