html, body {
    position: relative;
    font-family: 'IBM Plex Mono', monospace;
    background-color: #ebebeb;
}

.page {
    width: 100%;
    height: 100%; 
    display: flex;
    justify-content: center;
}

.wrapper{
    width: 100%;
    max-width: 1200px;
    height: 100%;
    justify-content: center;
    padding-top: 65px;
}

.logo{
    max-width: 270px;
    margin: auto;
    display: flex;
}

.header-box{
    width: 100%;
    display: flex;
    justify-content: center;
}

.header-wrapper{
    width: 100%;
    max-width: 500px;
}

h1{
    text-align: center;
    font-size: 22px;

}

.mac-wrapper{
    display: flex;
    justify-content: center;

}

.mac{
    width: 100%;
    max-width: 700px;
}

.mailme-wrapper{
    display: flex;
    justify-content: center;
    padding:25px;

}

.mailme{
    width: 150px;
    height: 45px;
    text-align: center;
    text-decoration: none;
    color: white;
    background-color: #d33b40;
    border-radius: 2px;
    margin: 10px;
    padding: 10px;
}

.mailme:hover{
    background-color: #c2353a;
    cursor: pointer;
}