* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container1{
    display: grid;
    place-items: center; 
    padding-top: 10px; 
    padding-bottom: 10px; 
}
.container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 80%;
    padding-top: 10px; 
    padding-bottom: 10px; 
}

.text {
    flex: 1;
    text-align: left;
    color: #bdbdbd;      
}

.image {
    flex: 1;
    text-align: right;
}

.image img {
    max-width: 100%;
    height: auto;
}

.center-text {
    text-align: center;
    line-height: 1.5;
}

.a1 {
    position: relative;
    color: #c5d0e2;
    text-decoration: none;
    font-size: 20px;
    text-transform: uppercase;
    transition: 0.5s;
    overflow: hidden;
    -webkit-box-reflect: below 1px linear-gradient(transparent, #0003);
    width: 250px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    margin-left: 50px;
    line-height: 50px;


}
.a1:hover {
    box-shadow: 0 0 50px #a1b7cc;
    transition-delay: 0.5s;
    color: #c5d0e2;
}


.a1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-top: 2px solid #74acd3;
    border-left: 2px solid #74acd3;
    transition: 0.5s;
    transition-delay: 0.5s;
}

.a1:hover::before {
    width: 100%;
    height: 100%;
    transition-delay: 0s;
}

.a1::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #74acd3;
    border-right: 2px solid #74acd3;
    transition: 0.5s;
    transition-delay: 0.5s;
}

.a1:hover::after {
    width: 100%;
    height: 100%;
    transition-delay: 0s;
}