@import url('https://fonts.googleapis.com/css?family=Montserrat');

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


body{
    background-color: #484848;
    width: 100%;
    height: 100%;
    padding:0;
    margin:0;
}

.logo{
    position: absolute;
    left: 50%;
    top: 30%;
    transform: translate(-50%, -50%);
    width: 17%;
    max-width: 100%;
    height: auto;
}

.titles{
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%);
    height: auto;
    color: #eeeeee;
}

.title{
    position: relative;
    font-family: 'Montserrat Bold', sans-serif;
    font-size: 4vw;
    margin-top: -77px;
}

.soon{
    position: absolute;
    left: 50%;
    top: 65%;
    transform: translate(-50%, -50%);
    height: auto;
    color: #ffffff;
}

.contact{
    position: absolute;
    left: 50%;
    top: 82%;
    transform: translate(-50%, -50%);
    height: auto;
    font-family: 'Montserrat Bold', sans-serif;
    font-size: 3vw;
    color: #ffffff;
    border-style: hidden;
    opacity: 0.5;
}

.contact:hover{
    /*text-shadow: 4px 4px 6px #000000;*/
    opacity: 1;
    transition: 0.5s;
}

.contact:hover:after
{
    width:225px;
    height:100px;
    font-size: 17px;
    position: absolute;
    left: 105%;
    top: 0.3cm;
    background-color: rgba(211, 204, 204, 0.5);
    content: "Telefone: 916239327 \A \A E-mail: brimol.pt@gmail.com \A \A Messenger: m.me/BrimolLda";
    white-space: pre-wrap;
}

.social-icons{
    position: absolute;
    left: 50%;
    bottom: 17%;
    transform: translate(-50%, -50%);
    height: auto;
}

.group-links{
    display:flex;  
    list-style:none;
}

.group-links li{
    float:left;
    position:relative;
}

.icon-logo{
    z-index: 1;
    width: 2.5vw;
    height: 2.5vw;
    opacity: 0.5;
    transition: 0.5s;
    margin: 15px;
}

.icon-logo:hover{
    opacity: 1;
}





/*Custom cursor animation*/
@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

#canvas {
    color: #fff; /* Change color and update, dots will change color */
    position:absolute;
    width:100%;
    height:100%;
    border: solid 1px;
    
  }


@media screen and (max-width: 1060px) {
    #primary { width:67%; }
    #secondary { width:30%; margin-left:3%;}  
}

/* Media Queries: Tabled Portrait */
@media screen and (max-width: 768px) {
    #primary { width:100%; }
    #secondary { width:100%; margin:0; border:none; }
}


