@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');

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

html {
    font-family: 'Quicksand', sans-serif;
    font-size: 10px;
}

.main {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('kamaka-bg-photo.jpg');
    background-position: center;
    background-size: cover;
}

.content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.logo img {
    display: block;
    width: 100%;
}

.text {
    padding-top: 75px;
}

.text a {
    font-size: 3.5rem;
    text-decoration: none;
    color: #0f467c;
}

.text a:hover {
    color: #0b7cc1;
}

@media (max-width: 768px) {
    .content {
        width: 85%;
    }
}

@media (max-width: 460px) {
    .text a {
        font-size: 2.5rem;
    }
}