*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    background: url("https://images.unsplash.com/photo-1512967509681-9785f2a6ff23?q=80&w=3732&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D") no-repeat center center fixed;
    background-size: cover;
    height: 100vh; 
    position: relative;
    
}
.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: whitesmoke;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.txt{
    border: 4px solid whitesmoke;
    padding: 25px;
    
}
h1{
    font-size: 60px;  
    letter-spacing: 6px; 
    
}
p{
    padding: 10px;
    text-align: right;
    font-size: 24px;
}
.txt:hover{
    background-color: #59342f;
    color: whitesmoke;
    
}

