@font-face {
    font-family: "Manrope Bold";
    src: url(../fonts/manrope-bold.otf);
}
@font-face {
    font-family: "Manrope Extrabold";
    src: url(../fonts/manrope-extrabold.otf);
}
@font-face {
    font-family: "Manrope Light";
    src: url(../fonts/manrope-light.otf);
}
@font-face {
    font-family: "Manrope Medium";
    src: url(../fonts/manrope-medium.otf);
}
@font-face {
    font-family: "Manrope Regular";
    src: url(../fonts/manrope-regular.otf);
}
@font-face {
    font-family: "Manrope Semibold";
    src: url(../fonts/manrope-semibold.otf);
}
@font-face {
    font-family: "Manrope Thin";
    src: url(../fonts/manrope-thin.otf);
}


* {
    margin: 0;
    font-family: "Manrope Thin", sans-serif;
    color: #212121;
}

body {
    background: #212121;
    position: relative;
    box-sizing: content-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100vh;
}

#maincard {
    position: relative;
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    width: fit-content;
    background-color: #f5f5f5;
    border-radius: 80px;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.15), 0 5px 5px 0 rgba(0, 0, 0, 0.15);
    max-width: 500px;
    margin: 10px;
    box-sizing: content-box;
}

#details {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 80px;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.025);
    font-size: 36px;
}

#image {
    position: relative;
    min-height: 100px;
    min-width: 100px;
    max-height: 100px;
    max-width: 100px;
    border-radius: 50%;
    background-image: url('/images/cv_avatar.png');
    background-size: 100px;
}

#name {
    margin-left: 20px;
    line-height: 40px;
}

#info {
    display: flex;
    justify-content: center;
    padding: 30px 80px 30px 80px;
    font-size: 18px;
}

#info > span {
    text-align: center;
    word-wrap: break-word;
    color: #424242;
    font-family: "Manrope Medium", sans-serif;
}