* {
    padding: 0;
    margin: 0;
}
body {
    background-color: #0f0f0f;
    font-family: "Open Sans";
    font-weight: 300;
    font-size: 18px;
}
a {
    text-decoration: none;
    transition: .1s;
    color: #FFF;
}
a:visited {
    color: #FFF;
}
a:hover {
    color: #63BB4D;
}
.main {
    width: 100%;
}
.logo {
    height: 200px;
    width: 700px;
    text-align: center;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.logo-img {
    width: 600px;
    height: 150px;
    margin: 0 auto;
}
.logo-img img {
    height: 100%;
    width: 100%;
}
.logo-text {
    color: #63BB4D;
    margin-top: 20px;
}
.logo-text span {
    color: #FFF;
}
.contact {
    color: #FFF;
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    text-align: center;
}
.phone,
.email {
    display: inline-block;
    margin: 0px 50px;
    margin-bottom: 20px;
}
.phone-img,
.email-img {
    height: 25px;
    width: 25px;
    background-image: url(slike/phone-img.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin: 0 auto;
    margin-bottom: 10px;
}
.email-img {
    width: 30px;
    background-image: url(slike/email-img.png);
}

@media only screen and (max-width:680px) {
    
    body {
        font-size: 15px;
    }
    .logo {
        width: 90%;
        position: relative;
        margin-top: 20px;
    }
    .logo-img {
        width: 100%;
        height: auto;
    }
    .logo-img img {
        height: 100%;
        width: 100%;
    }
    
}