* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: rgb(255, 255, 255 , 0.8);
}

.content {
    font-size: 120px;
    color: #ffdb3c;
    text-shadow: 2px 2px 0px #8d8d00;
}

.hello-container {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hello {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 800px;
    width: 1600px;
    background-color: #ddb4dd;
    border: 20px solid #da9dda;
    border-radius: 350px;
    font-size: 160px;
    color: white;
    text-shadow: 2px 2px 0px #9e9e9e;
    
}