*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:Georgia, serif;

    background-image:url("images/background.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    color:white;

    overflow:hidden;

    position:relative;
}

.overlay{

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.6);

    z-index:0;
}

.container{

    position:relative;

    z-index:1;

    display:flex;
    flex-direction:column;
    align-items:center;
}

.avatar{

    width:120px;
    height:120px;

    border-radius:50%;

    object-fit:cover;

    margin-bottom:20px;
}

h1{

    font-size:55px;

    margin-bottom:20px;
}

.subtitle{

    letter-spacing:5px;

    font-size:13px;

    opacity:.7;

    margin-bottom:10px;
}

hr{

    width:450px;

    border:none;

    border-top:1px solid rgba(255,255,255,.2);

    margin-bottom:20px;
}

.links{

    display:flex;

    flex-direction:column;

    gap:10px;
}

.links a{

    color:rgb(207, 165, 215);

    text-decoration:none;

    font-size:28px;

    transition:.3s;
}

.links a:hover{

    transform:translateX(10px);

    opacity:.6;
}

#clock{

    position:absolute;

    bottom:20px;
    right:20px;

    z-index:1;

    font-size:20px;
}