html {
    overflow: hidden;
    background-image: url(../img/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #000;
    padding: 20px;
}

main {
    height: 100vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
}

h1 {
    font-size: 38px;
    font-weight: 500;
    width: 100%;
    text-align: center;
    color: #fff;
}

.portrait {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.portrait img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
}

.name {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}

.contacts {
    display: flex;
    align-items: center;
    align-content: center;
    background-color: #fff;
    border: 1px solid #888;
    border-radius: 4px;
    padding: 8px 10px;
}

.contacts>div {
    margin: 0 5px;
}

.contacts>div svg {
    transition: opacity .3s;
}

.contacts>div:hover svg {
    opacity: 0.7;
}

.contacts svg {
    display: block;
}

.contacts .whatsapp svg {
    fill: #25D366;
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 50%;
}

.contacts .telegram svg {
    fill: #139BD0;
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 50%;
}

.contacts .email svg {
    fill: red;
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 50%;
}


@media (max-width:768px) {
    main {
        align-content: flex-start;
    }

    h1 {
        font-size: 24px;
    }

    .portrait img {
        width: 140px;
        height: 140px;
        border-radius: 50%;
    }
}