* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
}

img {
    width: 300px;
    height: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
}

h2 {
    color: aliceblue;
    display: flex;
    justify-content: center;
    align-items: center;
}

input {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 253, 253, 0.15);
    border-radius: 10px;
    height: 40px;
    width: 150px;
    margin-top: 10px;
    padding-left: 20px;
    font-weight: 200;
    font-size: 40px;
    line-height: 47px;
    color: white;
    opacity: 0.7;
}

div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

button {
   background-color: darkgreen;
   color: rgb(255, 255, 255);
   height: 45px;
   width: 200px;
   border-radius: 10px;
   border: none;
   display: block;
   margin-left: auto;
   margin-right: auto;
   margin-top: 50px;
}

button:hover {
    opacity: 0.9;
}

button:active {
    opacity: 0.8;
}