.cover {
    width: 100%;
    height: 100vh;
    background: url(https://i.postimg.cc/nzY8vv12/cover-1.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title {
    font-size: 56px;
    color: var(--primary-color);
    width: 600px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    text-shadow: 4px 4px 1px var(--white);
}

.buttons-cover {
    width: 600px;
    height: 80px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.go-contact,
.download-cv {
    width: 150px;
    height: 40px;
    font-size: 18px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 40px;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.go-contact {
    background-color: var(--primary-color);
    color: var(--white);
}

.go-contact:hover,
.download-cv:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

@media (max-width: 600px) {
    .title {
        font-size: 48px;
        width: 100%;
        height: auto;
    }

    .buttons-cover {
        margin-top: 40px;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
    }
}