@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: local('Montserrat Regular'), local('Montserrat-Regular'), url(https://fonts.gstatic.com/s/montserrat/v14/JTUSjIg1_i6t8kCHKm459Wlhzg.ttf) format('truetype');
}

strong, p{
    font-family: 'Montserrat';
}

body {
    background: #445;
    color: #FFF;
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center; /* Added to center text */
}

#video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1;
}

#video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 120vh;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: blur(10px);
}

.video-play-button {
    display: block;
    width: 104px;
    height: 104px;
    position: relative;
    cursor: pointer;
}

.video-play-outline {
    display: block;
    width: 96px;
    height: 96px;
    border: #FFF 4px solid;
    border-radius: 50%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: .7;
    transition: all .5s;
}

.video-play-circle {
    stroke-dasharray: 315;
    stroke-dashoffset: 315;
    transition: stroke-dashoffset .5s;
}

.video-play-button svg {
    display: block;
    transform: rotate(-90deg);
    transition: transform .3s;
}

.video-play-button:hover .video-play-circle {
    stroke-dashoffset: 0;
}

.video-play-button:active .video-play-outline {
    transform: scale(1.5);
    opacity: 0;
}

.video-play-button:active svg {
    transform: rotate(-90deg) scale(.95);
}

#copy-button {
    background: none;
    color: white;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 75%;
    left: 90%;
    margin-left: 10px;
    margin-top: -20px;
}

.server-info{
    position: absolute;
    top: 58%;
    left: 50%; 
    transform: translateX(-50%); 
    z-index: 1;
}

.logo{
    position: absolute;
    top: 0%;
    left: 50%; 
    transform: translateX(-50%); 
    width: 600px;
}

#copy-button i {
    font-size: 36px;
    color: white;
    transition: color 0.3s ease-in-out;
    position: relative;
    display: inline-block;
    background: linear-gradient(to top, white 50%, red 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 100% 200%;
    background-position: 0 100%;
    transition: background-position 0.3s ease-in-out;
}

#copy-button:hover i {
    background-position: 0 0;
}

#copy-button i {
    font-size: 46px;
}

.copy-status-bubble {
    background: #222;
    color: white;
    display: flex;
    padding-left: 10px;
    padding-right: 10px;
    align-items: center;
    position: fixed;
    top: 2rem;
    right: -15rem; 
    opacity: 0;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
    transition: all 0.75s cubic-bezier(0, 0, 0, 1);
    z-index: 100;
    border-radius: 5px;
    
}

.copy-status-bubble .check-circle {
    background: #333;
    border-radius: 100%;
    height: 2rem;
    width: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
}

.status--fade--in {
    right: 2rem !important; 
    opacity: 1 !important;
}
.material-icons{
    margin-right: 10px;
}

img{
    width: 600px;
}

.container{
    position: relative;
    display: inline-block;
}