body {
    background: #ff7043;
    align-items: center;
    justify-content: center;
}

h6 {
    color:gray;
    font-size: small;
}
a {
    color:#ff7043;
}
a:hover {
    color:#fff;
}
a:active {
    color:#fff;
}

.card {
    border-width: 4px;
    border-color:#ff6f4321;
    position: relative;
    overflow: hidden;
    border-radius: 8px; 
}

.card:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%; 
    transform: scaleY(1);
    transition: all 0.5s;
    transform-origin: bottom
}

.card:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%; 
    transform: scaleY(0);
    transition: all 0.5s;
    transform-origin: bottom
}

.card:hover::after {
    transform: scaleY(1)
}

.fonts {
    font-size: 11px
}

.social-list {
    display: flex;
    list-style: none;
    justify-content: center;
    padding: 0
}

.social-list li {
    padding: 10px;
    color: #ff7043;
    font-size: 19px
}
 
.buttons {
    flex-direction: row;
}
.buttons1 {
    border: 1px solid #ff7043 !important;
    color: #fff;
    background-color: #ff7043;
    height: 40px;
    width:100%;
    margin-bottom:10px;
}

.buttons1:hover {
    border: 1px solid #ff7043 !important;
    color: #fff;
    height: 40px;
    transition: 0.5s;
    background-color: #ff6f43b0
}

.buttons2 {
    border: 1px solid #ff7043 !important;
    color: #ff7043;
    background-color: transparent;
    height: 40px;
    width:100%;
    margin-bottom:10px;
}

.buttons2:hover {
    border: 1px solid #ff7043 !important;
    color: #fff;
    height: 40px;
    transition: 0.5s;
    background-color: #ff6f43b0
}