@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

* {
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Ubuntu Mono', monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #070031 45.36%, #000000 100%);
    min-height: 100vh;
}

a {
    font-weight:bold;
}

header {
    font-family: 'Press Start 2P', cursive;
    color: #FFFFFF;
    margin-top:1em;
}

header h1{
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0.18em;
    margin-bottom:10px;
    text-align: center;  
}

.gradientText {
    background: -webkit-linear-gradient(#FF5A09, #DC2537);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.shadow {
    text-shadow: 0px 2px 0px rgba(255, 0, 0, 0.3);
}

header h2 {
    font-size: 18px;
    line-height: 18px;
    text-align: center;
}
footer {
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom:10px;
}
#donateBtn {
    color: darkgoldenrod;
    padding: 3px 7px;
    background-color: yellow;
    border-radius:15px;
}

#donateBtn:before {
    font-family: "Font Awesome 5 Free"; 
    content: '\f4b9';
    margin-right: 5px;
}

.gruzoverflow {
    color:tomato;  
}

.maincontainer {
    display: flex;
    justify-content: space-between;
    align-content: center;
    flex-flow: column;
    width: 100%;
    height: 100vh;
    padding:0 10px;
}

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

.linkContainer {
    align-self: center;
    margin:20px 0px;
    display: flex;

}

.coublink {
    display: inline-block;
    font-size: 14px;
    line-height: 18px;
}

.leftRadius {
    border-radius: 3px 0px 0px 3px;
    padding: 5px;
}

.rightRadius {
    border-radius: 0px 3px 3px 0px;
    padding: 5px;
    color:#ffffffce;
}

.coublink a {
    color:#ffffffce;
    text-decoration: none;
    font-weight: bold;
}
/* tooltips */
.tooltip {
    position: relative;
    display: inline-block;
}
  
.tooltip .tooltiptext {
    font-family: 'Ubuntu Mono', monospace;
    font-weight: bold;
    width: max-content;
    visibility: hidden;
    bottom: 100%;
    left: 50%;
    margin-left: -60px; 
    position: absolute;
    z-index: 1;
    background-color: #fff;
    font-size: 14px;
    padding: 5px 10px;
    border:1px solid #06002F;
    text-align:center;
    border-radius: 3px;
    color: #06002F;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

video {
    height:400px;
    object-fit: contain;
}

.modal {
    display: none; /* Hidden by default */
    position: absolute;
    z-index: 1; 
    width: 350px; 
    overflow: auto; 
    background-color: #000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    display: flex;
    flex-flow:column;
    background-color: #960000;
    align-items: center;
    justify-content: center;
    color:#fff;
    padding:5px 20px 20px 20px;
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
}
  
 
.close {
    color: #fff;
    font-size: 28px;
    font-weight: bold;
}
  
.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.contactButtons{
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.contactButtons i {
    font-size: 1.5rem;
    color: #fff;

}

.contactButtons a {
    padding: 0 10px;
}

  @media (min-width: 372px) and (max-width: 600px) { 
    header h1 {
        font-size: 16px;
        line-height: 16px;
    }
    header h2 {
        font-size: 14px;
        line-height: 14px;
    }
    video {
        width:100%;
        height:200px;
    }

    footer {
        margin-bottom: 100px;
    }
}