@font-face {
    font-family: 'Lausanne-350'; 
    src: url("/v3/TWKLausanne-350.otf"); 
}
*{
    font-family: 'Lausanne-350';
    padding:0;
    margin:0;
    box-sizing: border-box;
    background-color:azure;
}

a {
    color: black;
    text-decoration: none;
    }
    
.parent{
    display:grid;
    max-width: 60vw;
    grid-template-columns: 1fr 3fr ;
    margin:auto;
    margin-top:100px;
    padding: 50px;
    border-radius: 10%;
    border: dotted 10px blueviolet;
    width: 70vw;
}

.child{
    padding:30px;
    text-align:left;
    line-height: 1.5em;

}
.child-1{
    text-align: left; 
    font-size: 50px; 
    
    text-decoration: underline dotted;
}

.child-2{
    font-size: 20px;
    
    text-transform: uppercase;
}

.title{
    font-size:60px;
    line-height: 60px;
}

.name{
    text-align: right;
}

.text-title{
    text-align: left;
    line-height:18px;
    font-size:15px;
}

.child-3{
    text-decoration: underline dotted 2px;
}