#app {
    background: url('../img/bg1.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

body {
    margin: 0;
    padding: 0;
    background: #27508f;
}

.domain-parent {
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.domain-list {
    transition: all 0.2s ease, visibility 0s;
    background: 0% 0%/auto auto linear-gradient(180deg, #3faa32 0%, #153811 100%), #FFFFFF;
    border-radius: 300px;
    border: 5px solid #EFE0BE;
    width: 585px;
    height: 81px;
    text-align: center;
    line-height: 81px;
    margin-bottom: 25px;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    font-size: 64px;
    font-weight: normal;
    font-style: normal;
    cursor: pointer;
}

.domain-list:hover {
    border-color: #153811;
    color: #5bf648;
}
@media (max-width: 768px) {
   .domain-list {
        width: 80vw;
        height: 60px;
        line-height: 60px;
        font-size: 36px;
    }
}