* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #20262e;
    padding: 20px;
    font-family: Helvetica;
    display: grid;
    justify-items: center;
    align-items: center;
    height: 100vh;
}

.container {
    height: 400px;
    width: 300px;
    background-color: white;
    padding-top: 10px;
    border-radius: 10px;
    display: grid;
    align-items: center;
}

.face {
    height: 200px;
    width: 280px;
    background-color: rgb(0, 40, 113);
    margin: auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.eye {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    background-color: white;
    position: absolute;
    top: 40px;
}

.right-eye {
    left: 20px;
}

.left-eye {
    right: 20px;
}

.eye-ball {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.5s ease-out;
}

/* Blink effect */

.face.blink .eye {
    height: 1px;
    top: 85px;
    background-color: #000;
    transition: all 0.2s ease-in-out;
}

.face.blink .eye-ball {
    background-color: #002871;
    transition: all 0.2s ease-in-out;
}

.content {
    padding: 20px;
}

.text-1 {
    font-size: larger;
    font-style: italic;
    background-color: #20262e24;
    padding-left: 8px;
}

.text-2 {
    font-size: small;
}

.text-3 {
    padding: 20px;
    font-size: x-small;
}

.text-3 a {
    font-weight: 700;
    color: rgb(0, 40, 113);
    text-decoration: none;
}