* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 2rem;
    min-height: 100vh;
    align-content: center;
    font-family: "Roboto", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    text-align: center;
    color: hsl(0, 0%, 100%);
    background-image: repeating-linear-gradient(135deg, hsla(210, 79%, 75%, 0.05) 0px, hsla(210, 79%, 75%, 0.05) 1px, transparent 1px, transparent 11px, hsla(210, 79%, 75%, 0.05) 11px, hsla(210, 79%, 75%, 0.05) 12px, transparent 12px, transparent 32px), repeating-linear-gradient(45deg, hsla(210, 79%, 75%, 0.05) 0px, hsla(210, 79%, 75%, 0.05) 1px, transparent 1px, transparent 11px, hsla(210, 79%, 75%, 0.05) 11px, hsla(210, 79%, 75%, 0.05) 12px, transparent 12px, transparent 32px), repeating-linear-gradient(90deg, hsla(210, 79%, 75%, 0.05) 0px, hsla(210, 79%, 75%, 0.05) 1px, transparent 1px, transparent 11px, hsla(210, 79%, 75%, 0.05) 11px, hsla(210, 79%, 75%, 0.05) 12px, transparent 12px, transparent 32px), repeating-linear-gradient(0deg, hsla(210, 79%, 75%, 0.05) 0px, hsla(210, 79%, 75%, 0.05) 1px, transparent 1px, transparent 11px, hsla(210, 79%, 75%, 0.05) 11px, hsla(210, 79%, 75%, 0.05) 12px, transparent 12px, transparent 32px), linear-gradient(90deg, rgb(10, 104, 175), rgb(12, 113, 195));
}

h1,
h2,
h3 {
    font-family: "Oswald", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
}

header {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

#logo {
    height: clamp(10rem, 19vw, 19rem);

}

#title {
    font-size: clamp(3rem, 6vw, 6rem);
    text-align: left;
    width: min-content;
    white-space: break-spaces;
    line-height: clamp(3rem, 6vw, 6rem);
}

section h2 {
    font-size: 2rem;
}

address {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 4rem 0;
}

.button {
    font-style: normal;
    text-decoration: none;
    line-height: 2px;
    color: hsl(0, 0%, 100%);
    background-color: hsl(206, 89%, 36%);
    padding: 1rem;
    border: #fff 1px solid;
    border-radius: 8px;
    transition: linear 0.2s;
}

.button:hover {
    background: hsl(206, 89%, 26%);
}

.button h3 {
    margin-top: 2px;
}