*{
    padding: 0;
    margin: 0;
box-sizing: border-box;    
}

body{
    background-image: linear-gradient(to right, #ff1900, #cf1600);
}
div.container{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    
}
div.container img{
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    box-shadow: 0px 0px 50px  #00013f;
}
div.container h1{
    text-transform: uppercase;
    font-family: sans-serif;
    font-size: 3em;
    font-weight: 700;
    color: #f0f8ff;
    
}
div.container a{
    position: absolute;
    bottom: 5px;
    text-transform: uppercase;
    color:#00013f;
    text-decoration: none;
    font-size: 1.2rem;
    text-shadow: 0px 0px 10px  transparent;
}
div.container a:hover{
    
    text-shadow: 0px 0px 15px  rgb(255, 255, 255);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}