@font-face {
    font-family: 'x';
    src: url('AvenirMedium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: 'x';

}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    position: relative;
}

.profile-image {
    position: relative;
    bottom: 20px;
    width: 1150px;
    height: 650px;
}

.social-buttons {
    display: flex;
    flex-direction: column; 
    align-items: center;
    position: absolute;
    bottom: 30px;
    right: 400px
}

.social-button,
.email-box {
    margin-bottom: 20px;
    padding: 10px 50px;
    width: 150px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    border-radius: 0%;
    border: 1px solid white;
    background-color: #333;
}

.email-box {
    display: inline-block;
    width: 250px;
}

.line-horizontal,
.line-vertical {
    position: absolute;
    border: 1px solid #00ff0c;
}

.line-horizontal {
    width: calc(100% - 20px);
}

.line-vertical {
    height: calc(100% - 20px);
}

.top {
    top: 30px;
}

.bottom {
    bottom: 30px;
}

.left {
    left: 30px;
}

.right {
    right: 30px;
}



ul {
    list-style-type: circle;
    color:green;
    position: absolute;
    top: 200px;
    left: 50px;
    font-size: 20px;
}

ul p {
    color: white;
}