*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    
}

body{
    background-color: black;
}

.container{
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.phone{
    padding-top: 0px;
    margin-top: 0px;
    height: 20px;
}

.header{
    padding-top: 5vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header img{
    width: 40%;
    border-radius: 8px;
    box-shadow:  3px 4px 8px rgba(247, 247, 247, 0.2);
    border-color: white;
}

.content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 2vh;
    color:  white;
    width: 50%;
}

.content h1{
    color: white;
}

.content a{
    color: white;
}

.content p{
    padding-top: 20px;
    hyphens: auto; 
	text-align: justify
    
}

