body {
    background-color: #091a40;
    color: white;
    font-family: 'Museo Sans', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url('../img/estes_fondo.jpg');
    background-size: cover;
    background-position: center;
}
.logo {
    text-align: center;
	font-size: 8vw;
    margin-bottom: 20px;
    display: block;
    width: 100%;
}
.container {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
    width: 100%;
}
.domaincheck {
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
    width: 100%;
}
.domain-form {
  margin-bottom: 20px;
}

#result {
 text-align: center;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
    width: 100%;
}
.eye {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    position: relative;
    margin: 0 0.2rem;
}

.pupil {
    width: 1rem;
    height: 1rem;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}