body
{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 22px;
    color: #445ed5;
}
#main
{
    min-height: 100vh;
    min-width: 100%;
    background: url('./KV.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 250px 0px;
}
#main::before
{
    content: "";
    display: block;
    height: 100vh;
    width: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, 
    rgba(255,255,255,1) 30%, 
    rgba(255,255,255,0.6) 40%, 
    rgba(255,255,255,0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
h1
{   
    
    font-weight: bold;
}
#logo
{
    margin-bottom: 120px;
}
.box-content
{
    max-width: 500px;
    position: relative;
    z-index: 2;
}
a.email
{
    font-weight: bold;
    color: #e83a43;
    text-decoration: none;
}
@media(max-width:1023px)
{
    h1
    {
        font-size: 36px;
    }
    body
    {
        font-size: 18px;;
    }
    #main
    {
        background-position: center;
    }
    .box-content
    {
        max-width: inherit;
    }
    #logo
    {
        margin-bottom: 50px;;
    }
    #logo img
    {
        max-width: 100%;
    }
    #main::before
    {
        background: rgba(255,255,255,0.8);
    }
}
@media(min-width:1024px)
{
    .container
    {
        width: 90%;
        max-width: 90%;
    }
}