﻿*{
    margin: 0;
    box-sizing: border-box;
}

.body{
    position:relative;
    background:linear-gradient(90deg,   #ff110036 50%, #0404278a 50%),url('/img/cover-bg.jpg');
    background-size:cover;
    background-attachment: fixed;
    background-position: center;
    width: 100%;
    height: 100vh;
}
.content{
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%);
    
}

.content a{
    color: #fafafa;
    background: #000; ;
}
.content a:hover{
    color: #fafafa;
    background: rgba(0, 0, 0, 0.37); 
    transition: 1s ease-in ease-out;
}
.content::after{
    color: #fafafa;
    background: rgba(0, 0, 0, 0.521); 
    transition: 1s ease-in-out;
}
.content::before{
    color: #fafafa;
    background: rgba(0, 0, 0, 0.685); 
    transition: 1s ease-in;
}