@import "https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700;800;900&amp;family=Roboto:wght@100;300;400;500;700;900&amp;display=swap";
*,
*:before,
*:after {
    box-sizing: inherit;
}
* {
    scroll-behavior: inherit !important;
}
html,
body {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
}
body {
    font-family: roboto, sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    background-image: url("../bg.jpg");
    background-position: center;
    background-size: cover;
    line-height: 1.4;
    height: 100vh;
    background-color: rgb(0, 0, 0, 0.6);
}

header {
    margin-bottom: 40px;
}

section.main {
    height: 90%;
}

section.main .profile .img-container {
    overflow: hidden;
    text-align: center;
    margin-bottom: 1rem;
}

section.main .profile .img-container img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

section .profile h3 {
    margin: 0px;
    color: rgb(255, 255, 255);
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
    text-overflow: ellipsis;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

section .buttons {
    margin-top: 40px;
}

section .buttons .btn {
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    transition: 0.5s;
    color: #fff;
    background-color: transparent;
    border-color: dimgray;
    box-shadow: none;
}

section .buttons .btn:hover {
    transform: scale(1.02);
}
