html *{
    cursor: default;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    background-image: url(background.jpg);
    width: 100vw;
    height: 100vh;
}
button{
    cursor: pointer;
}
a{
    color: inherit;
    text-decoration: none;
}
.content *{
    color: white;
    box-sizing: border-box;
}
.content{
    width: 50vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.greetings{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    width: 70%;
    height: 70%;
    border: 3px solid white;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px;
}
.hello{
    position: relative;
    cursor: default;
    font-size: 40px;
    font-weight: 900;
    width: max-content;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0% 2px;
    background-repeat: no-repeat;
    background-position: center bottom;
    transition: all .3s ease-in-out;
}
.hello:hover{
    
    transition: all .3s ease-in-out;
    background-size: 100% 2px;
}
.message{
    font-size: 24px;
    margin: 16px;
}
.point{
    background-color: white;
    color: gray;
    margin: 16px 0;
    padding: 16px;
    font-size: 20px;
    border-radius: 20px;
    min-height: 50px;
    transition: all .3s ease-in-out;
    width: 100%;
}
.point:hover{
    color: black;
    transition: all .3s ease-in-out;
}
