/* Website Build for Party Host */

@font-face {
    font-family: 'Title';
    src: url('Title.ttf');
}

body {
    background-color: #333;
}

#home_animation {
    width: 80%;
    height: 80%;
}

#gc {
    position: absolute;
    width: 100%;
    left: 0%;
    text-align: center;
}

#title {
    font-family: 'Title';
    font-size: 300%;
}

#title_container {
    position: absolute;
    width: 100%;
    left: 0;
    top: 15%;
    text-align: center;
}

#gif_recover {
    background: linear-gradient(#e66465, #9198e5);
    position: absolute;
    top:0;
    left:0;
    height: 100%;
    width: 100%;
    opacity: 50%;
}

#m_band {
    position: absolute;
    left: 0;
    width: 100%;
    top: 20%;
}

mark {
    background-color: lightcyan;
    opacity: 70%;
}

#buttons_container {
    position: absolute;
    width: 100%;
    left: 0;
    text-align: center;
    top: 62%;
}

#cnx {
    background-color: #222;
    border: none;
    color: white;
    height: 50%;
    padding: 2%;
    width: 15%;
    margin-right: 10%;
    transition: all, 0.5s;
}

#cnx:hover {
    box-shadow:  0 0 7px #444, 
    0 0 10px #444, 
    0 0 10px #444,   
    0 0 10px #444, 
    0 0 10px #444; 
}

#reg {
    background: rgba(255,255,255,0);
    border: none;
    color: white;
    height: 50%;
    padding: 2%;
    width: 15%;
    border: 2px solid white;
    transition: all, 0.5s;
}

#reg:hover {
    box-shadow:  0 0 7px #444, 
    0 0 10px #444, 
    0 0 10px #444,   
    0 0 10px #444, 
    0 0 10px #444; 
}

#dots {
    top: 1%;
    position: absolute;
    align-items: center;
    justify-content: center;
    display: flex;
}

.dots {
    left: 3%;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin: 10px 3px;
}

#d1 {
    background-color: crimson;
}

#d2 {
    background-color: yellow;
}

#d3 {
    background-color: lightgreen;
}