@font-face {
    font-family: 'myFont';
    src: url(./Valty\ DEMO.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: black;
    color: white;
    font-family: 'myFont';
}
.conatiner {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
}

.head {
    margin-top: 50px;
    font-size: 40px;
}

.img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 300px;
    margin-top: 50px;
    border: 1px solid red;
    border-radius: 30px;
    box-shadow: 0px 0px 30px rgb(255, 225, 225);
}

.img-sec {
    border-radius: 30px;
}

.name {
    margin-top: 80px;
}
.color{
    color: red;
}