* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

:root {
    --primary: #f28100;
    --secondary: #008b92;
}

body{
    background: url("background.png") no-repeat center top;
    background-size: cover;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.content {
    margin-top: 8vh;
    display: flex;
    justify-content: center;
    align-items: start;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom, #ffffff00 60%, #ffffff44);
    padding: 8px;
    border-radius: 8px;
}

.main-header .logo {
    width: 200px;
}

.main .legend {
    color: var(--secondary);
    font-weight: bold;
    font-family: sans-serif;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: .8em;
}

.btn-primary {
    width: 140px;
    padding: 4px;
    text-align: center;
    vertical-align: center;
    background-color: var(--primary);
    font-weight: bold;
    color: #ffffff;
    border: none;
    outline: 1px solid #ffffff44;
    border-radius: 999em;
    margin-bottom: 10px;
    cursor: pointer;
    font-stretch: ultra-expanded;
}

.btn-contact {
    width: 140px;
    padding: 4px;
    margin-top: 10px;
    background-color: var(--secondary);
    border: none;
    outline: 1px solid #ffffff44;
    border-radius: 2px;
    color: #ffffff;
    font-weight: bold;
    font-size: .8em;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.main-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--secondary);
    font-weight: bold;
    margin-top: 30px;
    font-size: 0.5em;
}
