body{
	background-color: black;
    height: 100vh;
    margin: 0;
    
}

.text{
    position: absolute;
    color: white;
    margin-left: 10px;
    font-family: sans-serif;
}

.link{
    top: 80px;
    text-decoration: none;
    transition: font-size .3s;
}
.link:hover{
    font-size: 20px;
}


div{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

img{
	width: 50%;
    border-radius: 10px;
-webkit-box-shadow: 0px 0px 50px 1px #FFFFFF; 
box-shadow: 0px 0px 50px 1px #FFFFFF;
}

@media screen and (max-width: 600px){
    img{
        width: 90%;
    }
}