* {
    box-sizing: border-box;
    background-color: rgb(10, 45, 73);
    color: white;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn {
    padding: 10px;
    border-radius: 10px;
    margin-top: 50px;
}

.btn:hover {
    background: white;
    color: black;
    border: none;
    transform: scale(1.2);
}

.h1 {
    font-size: 100px;
}

p {
    margin-top: 300px;
}

p:hover {
    color: orange;
}