@font-face {
    font-family: onlinesuite;
    src: url(../font/onlinesuite_font.ttf);
    font-display: swap;
}

* {
    padding: 0;
    margin: 0;
    font-family: onlinesuite;
}

.container {
    height: 100vh;
    width: 100vw;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tag-area {
    position: relative;
    background-color: rgba(128, 128, 128, 0);
    height: 85vh;
    width: 85vw;
}

.tag {
    position: absolute;
    
    width: auto;
    max-width: 100%; /* Alternative for fit-content for broader compatibility */
    
    
    -webkit-border-radius: {0};
    -moz-border-radius: {0};
    border-radius: 25px;
    border: 1px solid white;
    padding: 10px;
    color: white;
    font-size: 1em;
    
    -webkit-animation-name: {0};
    -moz-animation-name: {0};
    animation-name: tag;
    animation-duration: 10s;
    animation-iteration-count: 1;
    opacity: 0;
}

@keyframes tag {
    from {
        opacity: 1;
        
    -webkit-transform: {0};
    -ms-transform: {0};
    transform: scale(1.5);
        
    -webkit-filter: {0};
    filter: blur(0px);
        
    display: inline-block; /* Ensure elements are rendered properly */
    
    }

    to{
        opacity: 0;
        
    -webkit-transform: {0};
    -ms-transform: {0};
    transform: scale(0);
        
    -webkit-filter: {0};
    filter: blur(15px);
        display: none;
    }
}

.logo {
    
    -webkit-border-radius: {0};
    -moz-border-radius: {0};
    border-radius: 50%;
    max-width: 150px;
    max-height: 150px;
    
    -webkit-animation-name: {0};
    -moz-animation-name: {0};
    animation-name: logo;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    background-color: #ff61597e;
}

@keyframes logo {
    from {
        
    -webkit-box-shadow: {0};
    box-shadow: 0px 0px 10px #ff6159;
    }
    to {
        
    -webkit-box-shadow: {0};
    box-shadow: 0px 0px 25px #ff6159;
    }
}

.content-box {
    
    -webkit-border-radius: {0};
    -moz-border-radius: {0};
    border-radius: 25px;
    padding: 50px;
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    
    -webkit-animation-name: {0};
    -moz-animation-name: {0};
    animation-name: content-box;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate-reverse;
    background-color: rgba(0, 0, 0, 0.95);
}

@keyframes content-box {
    from {
        
    -webkit-box-shadow: {0};
    box-shadow: 0px 0px 10px white;
    }
    to {
        
    -webkit-box-shadow: {0};
    box-shadow: 0px 0px 20px white;
    }
}

.title {
    color: white;
    font-weight: bold;
}

.subtitle {
    color: white;
}

.actions-area {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn {
    
    -webkit-border-radius: {0};
    -moz-border-radius: {0};
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    outline: none;
    background-color: transparent;
    text-decoration: none;
    transition: 0.5s;
}

.btn-white {
    color: white;
    border: 1px solid white;
}

.btn-white:hover {
    background-color: white;
    color: black;
    
    -webkit-box-shadow: {0};
    box-shadow: 0px 0px 10px white;
}

.btn-onlinesuite {
    color: #ff6159;
    border: 1px solid #ff6159;
}

.btn-onlinesuite:hover {
    background-color: #ff6159;
    color: white;
    
    -webkit-box-shadow: {0};
    box-shadow: 0px 0px 10px #ff6159;
}

.links-area {
    justify-content: center;
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.links-area > a {
    color: white;
    text-decoration: none;
    opacity: 0.5;
}

.links-area > a:hover {
    opacity: 1;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  
    -webkit-border-radius: {0};
    -moz-border-radius: {0};
    border-radius: 15px;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  
    width: auto;
    max-width: 100%; /* Alternative for fit-content for broader compatibility */
    
  height: fit-content;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}